Skip to content

Commit c454258

Browse files
committed
use Chrome in local dev by default, Firefox on CI (for better coverage)
1 parent 94f9cd4 commit c454258

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

test/jasmine/karma.ciconf.js

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ function func(config) {
1414

1515
func.defaultConfig.autoWatch = false;
1616

17+
func.defaultConfig.browsers = ['Firefox'];
18+
1719
config.set(func.defaultConfig);
1820
}
1921

test/jasmine/karma.conf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func.defaultConfig = {
5050

5151
// start these browsers
5252
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
53-
browsers: ['Firefox'],
53+
browsers: ['Chrome'],
5454

5555
// Continuous Integration mode
5656
// if true, Karma captures browsers, runs the tests and exits

0 commit comments

Comments
 (0)