File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 74
74
"pretest" : " npm run lint" ,
75
75
"test" : " npm run tests-only" ,
76
76
"posttest" : " aud --production" ,
77
- "tests-only" : " nyc tap test/*.js" ,
77
+ "tests-only" : " nyc tap ' test/*.js' " ,
78
78
"test:example" : " find example -name '*.js' | grep -v fail | grep -v static | xargs tap"
79
79
},
80
80
"testling" : {
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ var exec = require('child_process').exec;
6
6
7
7
var stripFullStack = require ( './common' ) . stripFullStack ;
8
8
9
- var tapeBin = path . join ( __dirname , '../bin/tape' ) ;
9
+ var tapeBin = 'node ' + path . join ( __dirname , '../bin/tape' ) ;
10
10
11
11
var expectedExitCodeFailure = ( / ^ 0 \. 1 0 \. \d + $ / ) . test ( process . versions . node ) ;
12
12
var expectedStackTraceBug = ( / ^ 3 \. [ 0 1 2 ] \. \d + $ / ) . test ( process . versions . node ) ; // https://github.com/nodejs/node/issues/2581
You can’t perform that action at this time.
0 commit comments