File tree Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Original file line number Diff line number Diff line change 7
7
const { karmaConfig } = require ( "@jsdevtools/karma-config" ) ;
8
8
const { host } = require ( "@jsdevtools/host-environment" ) ;
9
9
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
-
26
10
module . exports = karmaConfig ( {
27
11
sourceDir : "lib" ,
28
12
fixtures : "test/fixtures/**/*.js" ,
@@ -33,7 +17,4 @@ module.exports = karmaConfig({
33
17
edge : host . os . linux , // SauceLabs
34
18
ie : host . os . windows ,
35
19
} ,
36
- // config: {
37
- // exclude,
38
- // }
39
20
} ) ;
You can’t perform that action at this time.
0 commit comments