Skip to content

Commit 5808771

Browse files
Removed exclusions when running in CI
1 parent 5261f20 commit 5808771

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

karma.conf.js

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,6 @@
77
const { karmaConfig } = require("@jsdevtools/karma-config");
88
const { host } = require("@jsdevtools/host-environment");
99

10-
// let exclude = [];
11-
12-
// if (host.os.windows && host.ci) {
13-
// // We're running in a Windows CI/CD environment, so Karma-Config will use SauceLabs.
14-
// // The following tests tend to fail on SauceLabs, probably due to zero-byte files
15-
// // and special characters in the paths. So, exclude them.
16-
// exclude.push(
17-
// "test/specs/__*/**",
18-
// "test/specs/blank/**/*.spec.js",
19-
// "test/specs/circular*/**/*.spec.js",
20-
// "test/specs/empty/**/*.spec.js",
21-
// "test/specs/invalid/**/*.spec.js",
22-
// "test/specs/parsers/**/*.spec.js"
23-
// );
24-
// }
25-
2610
module.exports = karmaConfig({
2711
sourceDir: "lib",
2812
fixtures: "test/fixtures/**/*.js",
@@ -33,7 +17,4 @@ module.exports = karmaConfig({
3317
edge: host.os.linux, // SauceLabs
3418
ie: host.os.windows,
3519
},
36-
// config: {
37-
// exclude,
38-
// }
3920
});

0 commit comments

Comments
 (0)