We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1285137 commit fc62f41Copy full SHA for fc62f41
scripts/karma.conf.js
@@ -27,6 +27,9 @@ module.exports = function(config) {
27
if (CI_TEST_TYPE === 'coverage') {
28
defaults = {};
29
}
30
+ // pin Browserstack Firefox version to 64
31
+ // eslint-disable-next-line camelcase
32
+ defaults.bsFirefox.browser_version = '64.0';
33
34
return defaults;
35
},
@@ -36,9 +39,4 @@ module.exports = function(config) {
36
39
};
37
40
38
41
config = generate(config, options);
- // eslint-disable-next-line no-console
- console.log('config', config);
- // pin Browserstack Firefox version to 64
42
- // eslint-disable-next-line camelcase
43
- config.customLaunchers.bsFirefox.browser_version = '64.0';
44
0 commit comments