File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 5555 "pretest" : " npm run lint" ,
5656 "test" : " npm run tests-only" ,
5757 "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"
5960 },
6061 "testling" : {
6162 "files" : " test/browser/*.js" ,
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ var exec = require('child_process').exec;
66
77var stripFullStack = require ( './common' ) . stripFullStack ;
88
9- var tapeBin = path . join ( __dirname , '../bin/tape' ) ;
9+ var tapeBin = 'node ' + path . join ( __dirname , '../bin/tape' ) ;
1010
1111var expectedExitCodeFailure = ( / ^ 0 \. 1 0 \. \d + $ / ) . test ( process . versions . node ) ;
1212var 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