This repository was archived by the owner on May 5, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ module.exports = function(config) {
84
84
files : config . includeFiles ? config . includeFiles . split ( ',' ) : [ 'packages/**/test/**/*.ts' ] ,
85
85
86
86
// list of files / patterns to exclude
87
- exclude : [ ] ,
87
+ exclude : config . excludeFiles ? config . excludeFiles . split ( ',' ) : [ ] ,
88
88
89
89
// preprocess matching files before serving them to the browser
90
90
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
Original file line number Diff line number Diff line change 6
6
"scripts" : {
7
7
"dev" : " webpack-dev-server" ,
8
8
"build" : " rm -rf build/examples; mkdir -p build/examples/; cp -r ./examples ./build; webpack" ,
9
- "perf" : " karma start --include-files test/ **/*.perf.ts" ,
10
- "coverage" : " karma start --coverage" ,
9
+ "perf" : " karma start --include-files **/*.perf.ts" ,
10
+ "coverage" : " karma start --coverage --include-files **/*.test.ts --exclude-files **/*.perf.ts " ,
11
11
"debug" : " karma start --no-browsers --debug" ,
12
- "test" : " karma start"
12
+ "test" : " karma start --exclude-files **/*.perf.ts "
13
13
},
14
14
"repository" : {
15
15
"type" : " git" ,
You can’t perform that action at this time.
0 commit comments