File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ module.exports = function(config) {
15
15
'jquery-ui' : './src/jq/jquery-ui.js' ,
16
16
}
17
17
}
18
- }
18
+ } ,
19
+ exclude : [ "demo" ] // ignore dummy demo .ts files
19
20
} ,
20
21
21
22
// base path that will be used to resolve all patterns (eg. files, exclude)
@@ -34,17 +35,17 @@ module.exports = function(config) {
34
35
// BUT list of files to exclude
35
36
exclude : [
36
37
// used for webpack h5/jq/static .js
37
- " src/gridstack-h5.ts" ,
38
- " src/gridstack-jq.ts" ,
39
- " src/gridstack-static.ts" ,
38
+ ' src/gridstack-h5.ts' ,
39
+ ' src/gridstack-jq.ts' ,
40
+ ' src/gridstack-static.ts' ,
40
41
'src/jq/*' , // use h5 version for unit testing
41
42
// 'src/h5/*', // use jq version for unit testing
42
43
] ,
43
44
44
45
// preprocess matching files before serving them to the browser
45
46
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
46
47
preprocessors : {
47
- " **/*.ts" : [ 'karma-typescript' ]
48
+ ' **/*.ts' : [ 'karma-typescript' ]
48
49
} ,
49
50
50
51
// test results reporter to use
You can’t perform that action at this time.
0 commit comments