added firefox to karma config

This commit is contained in:
Carlos 2017-08-29 13:41:55 +02:00
parent 5bf59f4c25
commit ca9906de33
1 changed files with 2 additions and 1 deletions

View File

@ -61,7 +61,7 @@ module.exports = function(config) {
// start these browsers // start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ['Chrome'], browsers: ['Chrome', 'Firefox'],
// Continuous Integration mode // Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits // if true, Karma captures browsers, runs the tests and exits
@ -76,6 +76,7 @@ module.exports = function(config) {
'karma-webpack', 'karma-webpack',
'karma-requirejs', 'karma-requirejs',
'karma-chrome-launcher', 'karma-chrome-launcher',
'karma-firefox-launcher',
'karma-browserify', 'karma-browserify',
'karma-sourcemap-loader' 'karma-sourcemap-loader'
] ]