Skip to content

Commit f35f71b

Browse files
committed
[Tests] fix no_only tests on Windows
1 parent 7b0c901 commit f35f71b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@
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",

test/no_only.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var exec = require('child_process').exec;
66

77
var stripFullStack = require('./common').stripFullStack;
88

9-
var tapeBin = path.join(__dirname, '../bin/tape');
9+
var tapeBin = 'node ' + path.join(__dirname, '../bin/tape');
1010

1111
var expectedExitCodeFailure = (/^0\.10\.\d+$/).test(process.versions.node);
1212
var expectedStackTraceBug = (/^3\.[012]\.\d+$/).test(process.versions.node); // https://github.com/nodejs/node/issues/2581

0 commit comments

Comments
 (0)