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 9dd74a6 commit 837de70Copy full SHA for 837de70
karma.conf.js
@@ -10,10 +10,10 @@ module.exports = karmaConfig({
10
sourceDir: "esm",
11
fixtures: "test/fixtures/**/*.js",
12
browsers: {
13
- chrome: true,
14
- firefox: host.os.linux,
15
- safari: host.os.linux, // SauceLabs
16
- edge: host.os.linux, // SauceLabs
+ chrome: host.ci ? host.os.linux : true,
+ firefox: host.ci ? host.os.linux : true,
+ safari: host.ci ? host.os.linux : host.os.mac, // SauceLabs in CI
+ edge: host.ci ? host.os.linux : host.os.windows, // SauceLabs in CI
17
ie: host.os.windows,
18
},
19
});
0 commit comments