Skip to content

Commit a00a236

Browse files
Fixed tests that were failing in IE and Edge
1 parent 0980b0a commit a00a236

File tree

7 files changed

+604
-638
lines changed

7 files changed

+604
-638
lines changed

karma.conf.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ module.exports = karmaConfig({
1111
sourceDir: "lib",
1212
fixtures: "test/fixtures/**/*.js",
1313
browsers: {
14-
chrome: true,
15-
firefox: host.os.linux,
16-
safari: host.os.linux, // SauceLabs
17-
edge: false, // host.os.linux, // SauceLabs
18-
ie: false, // host.os.windows,
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,
1919
},
2020
});

0 commit comments

Comments
 (0)