File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ var checker = new IncrementalChecker(
9
9
process . env . WATCH === '' ? [ ] : process . env . WATCH . split ( '|' ) ,
10
10
parseInt ( process . env . WORK_NUMBER , 10 ) ,
11
11
parseInt ( process . env . WORK_DIVISION , 10 ) ,
12
- process . env . CHECK_SYNTACTIC_ERRORS
12
+ process . env . CHECK_SYNTACTIC_ERRORS === 'true'
13
13
) ;
14
14
15
15
function run ( cancellationToken ) {
Original file line number Diff line number Diff line change 11
11
"test:integration" : " mocha -R spec ./test/integration && rimraf tmp" ,
12
12
"test" : " npm run test:unit && npm run test:integration" ,
13
13
"test:watch" : " mocha -R spec --watch ./test/unit" ,
14
- "test:coverage" : " rimraf coverage && istanbul cover -root lib --include-all-sources node_modules/.bin/_mocha -- -R spec ./test/unit ./test/integration" ,
14
+ "test:coverage" : " rimraf coverage && istanbul cover -root lib --include-all-sources mocha -- -R spec ./test/unit ./test/integration" ,
15
15
"lint" : " eslint ./lib ./test" ,
16
16
"lint:fix" : " eslint ./lib ./test --fix"
17
17
},
You can’t perform that action at this time.
0 commit comments