Skip to content

Commit c75568e

Browse files
committed
build: invalid browser name in karma config
Fixes the name of the default browser in the Karma config being invalid and throwing an error when running the tests locally.
1 parent 26c73e0 commit c75568e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/karma.conf.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
const path = require('path');
22
const {customLaunchers, platformMap} = require('./browser-providers');
33

4-
module.exports = (config) => {
5-
4+
module.exports = config => {
65
config.set({
76
basePath: path.join(__dirname, '..'),
87
frameworks: ['jasmine'],
@@ -74,7 +73,7 @@ module.exports = (config) => {
7473
browserNoActivityTimeout: 300000,
7574
captureTimeout: 180000,
7675

77-
browsers: ['ChromeHeadlessLocal'],
76+
browsers: ['ChromeHeadless'],
7877
singleRun: false,
7978

8079
// Try Websocket for a faster transmission first. Fallback to polling if necessary.

0 commit comments

Comments
 (0)