diff options
Diffstat (limited to '.config/karma.conf.js')
-rw-r--r-- | .config/karma.conf.js | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/.config/karma.conf.js b/.config/karma.conf.js index 2a7dae4..ad256e2 100644 --- a/.config/karma.conf.js +++ b/.config/karma.conf.js @@ -65,16 +65,7 @@ module.exports = function(config) { // start these browsers // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher - browsers: ['Chrome'], - - - customLaunchers: { - Chrome_travis_ci: { - base: 'Chrome', - flags: ['--no-sandbox'] - } - }, - + browsers: ['Firefox'], // Continuous Integration mode // if true, Karma captures browsers, runs the tests and exits @@ -84,8 +75,4 @@ module.exports = function(config) { // how many browser should be started simultaneous concurrency: Infinity }) - - if(process.env.TRAVIS){ - config.browsers = ['Chrome_travis_ci']; - } } |