File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 55
55
"pretest" : " npm run lint" ,
56
56
"test" : " npm run tests-only" ,
57
57
"posttest" : " aud --production" ,
58
- "tests-only" : " nyc tap test/*.js"
58
+ "tests-only" : " nyc tap 'test/*.js'" ,
59
+ "test:example" : " find example -name '*.js' | grep -v fail | grep -v static | xargs tap"
59
60
},
60
61
"testling" : {
61
62
"files" : " test/browser/*.js" ,
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