diff --git a/.vscode/launch.json b/.vscode/launch.json index eface6dd68b9f51060697751c78339a4ff959f28..e429fb7353029bff8f15f37ed0a2e3860e8ccd20 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -24,6 +24,7 @@ "sourceMaps": true, "webRoot": "${workspaceRoot}/build", "url": "http://localhost:9876/debug.html", + "runtimeExecutable": "/usr/bin/chromium-browser", "runtimeArgs": [ "--headless" ] diff --git a/karma.conf.js b/karma.conf.js index a36f24b67966265bfd8f874ccacfb9f785f1b2ed..44b8d54bcfcaea1e8fb7d679bc6155b87c568822 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -63,7 +63,7 @@ module.exports = function (config) { // start these browsers // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher - browsers: ['Chrome'], + browsers: ['Chromium'], plugins: [ 'karma-jasmine', diff --git a/package.json b/package.json index 0f2c9fd4dde7c4be8fe71e011b03a51c320baf15..aa76aaefcc705c0620434a738850b64fc221feca 100644 --- a/package.json +++ b/package.json @@ -29,6 +29,7 @@ }, "scripts": { "build": "npm run buildgeneric -- src/tsconfig.app.json", + "buildspec": "npm run buildgeneric -- spec/tsconfig.spec.jasmine.json", "buildgeneric": "npm run preprocess; rm -rf build; ./node_modules/typescript/bin/tsc --p", "runtestremous": "./node_modules/typescript/bin/tsc --p spec/tsconfig-remous-fenetre.spec.json && node ./build/spec/test-remous-fenetre.js", "jasmine": "npm run buildgeneric -- spec/tsconfig.spec.jasmine.json && ./node_modules/.bin/jasmine",