We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7536fba commit baca83cCopy full SHA for baca83c
test/require.js
@@ -65,5 +65,5 @@ function tape(args) {
65
var proc = require('child_process')
66
var bin = __dirname + '/../bin/tape'
67
68
- return proc.spawn(bin, args.split(' '), { cwd: __dirname })
+ return proc.spawn('node', [bin].concat(args.split(' ')), { cwd: __dirname })
69
}
test/require/a.js
@@ -1,8 +1,8 @@
1
var tape = require('../..');
2
3
tape.test('module-a', function(t) {
4
+ t.plan(1)
5
t.pass('loaded module a')
- t.end()
6
})
7
8
global.module_a = true
test/require/b.js
tape.test('module-b', function(t) {
t.pass('loaded module b')
global.module_b = true
0 commit comments