Skip to content

Commit b7f3fb4

Browse files
committed
chore(): change karma back to Firefox and add launcher
1 parent b9c9644 commit b7f3fb4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

karma.conf.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ module.exports = function(config) {
44
frameworks: ['jasmine'],
55
plugins: [
66
require('karma-jasmine'),
7-
require('karma-chrome-launcher')
7+
require('karma-chrome-launcher'),
8+
require('karma-firefox-launcher'),
89
],
910
files: [
1011
{pattern: 'node_modules/angular2/bundles/angular2-polyfills.js', included: true, watched: true},
@@ -39,7 +40,7 @@ module.exports = function(config) {
3940
colors: true,
4041
logLevel: config.LOG_INFO,
4142
autoWatch: true,
42-
browsers: ['Chrome'],
43+
browsers: ['Firefox'],
4344
singleRun: false
4445
});
4546
};

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"jasmine-core": "^2.3.4",
3232
"karma": "^0.13.15",
3333
"karma-chrome-launcher": "^0.2.1",
34+
"karma-firefox-launcher": "^0.1.7",
3435
"karma-jasmine": "^0.3.6"
3536
}
3637
}

0 commit comments

Comments
 (0)