Commit cae69f96 by Andy Armstrong Committed by GitHub

Merge pull request #12810 from edx/andya/no-karma-firefox-modals

Don't auto-update during Karma test runs
parents 5e4ce786 f7133089
......@@ -325,8 +325,18 @@ var getBaseConfig = function (config, useRequireJs) {
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ['Firefox'],
browsers: ['FirefoxNoUpdates'],
customLaunchers: {
// Firefox configuration that doesn't perform auto-updates
FirefoxNoUpdates: {
base: 'Firefox',
prefs: {
'app.update.auto': false,
'app.update.enabled': false
}
}
},
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment