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 ced125f commit a758831Copy full SHA for a758831
karma.conf.js
@@ -13,8 +13,8 @@ module.exports = karmaConfig({
13
browsers: {
14
chrome: host.ci ? host.os.linux : true,
15
firefox: host.ci ? host.os.linux : true,
16
- safari: host.ci ? host.os.linux : host.os.mac,
17
- edge: host.ci ? host.os.linux : host.os.windows,
18
- ie: host.os.windows,
+ safari: host.ci ? host.os.linux : host.os.mac, // SauceLabs in CI
+ edge: host.ci ? host.os.linux : host.os.windows, // SauceLabs in CI
+ ie: host.ci ? host.os.windows : false, // IE needs to run by itself, due to Babel transforms
19
},
20
});
0 commit comments