diff --git a/package.json b/package.json index 27f380a68..09616f290 100644 --- a/package.json +++ b/package.json @@ -17,10 +17,10 @@ "build:prod": "ng build --configuration production", "build-and-copy-local": "npm run build:prod && ./scripts/copy-to-portal.sh ../evento-portal/public/apps/webapp-schulverwaltung/", "test": "ng test", - "test:headless": "ng test --watch=false --browsers=ChromeHeadless", - "test:watch": "ng test --browsers=ChromeHeadless", - "test:brief": "ng test --browsers=ChromeHeadless --reporters brief", - "test:coverage": "ng test --browsers=ChromeHeadless --code-coverage --reporters coverage-istanbul", + "test:headless": "ng test --watch=false --browsers=ChromiumHeadless", + "test:watch": "ng test --browsers=ChromiumHeadless", + "test:brief": "ng test --browsers=ChromiumHeadless --reporters brief", + "test:coverage": "ng test --browsers=ChromiumHeadless --code-coverage --reporters coverage-istanbul", "lint": "ng lint", "format": "prettier --write \"./**/*\" --ignore-unknown", "format:upgrade": "npm install --save-exact prettier@latest && npm run format", diff --git a/src/karma.conf.js b/src/karma.conf.js index 9d99cf1ce..a46039071 100644 --- a/src/karma.conf.js +++ b/src/karma.conf.js @@ -33,7 +33,7 @@ module.exports = function (config) { colors: true, logLevel: config.LOG_INFO, autoWatch: true, - browsers: ["Chrome"], + browsers: ["Chromium"], singleRun: false, restartOnFileChange: true, });