Skip to content

Commit baca83c

Browse files
committed
Fix for unit tests on windows
1 parent 7536fba commit baca83c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/require.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,5 @@ function tape(args) {
6565
var proc = require('child_process')
6666
var bin = __dirname + '/../bin/tape'
6767

68-
return proc.spawn(bin, args.split(' '), { cwd: __dirname })
68+
return proc.spawn('node', [bin].concat(args.split(' ')), { cwd: __dirname })
6969
}

test/require/a.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
var tape = require('../..');
22

33
tape.test('module-a', function(t) {
4+
t.plan(1)
45
t.pass('loaded module a')
5-
t.end()
66
})
77

88
global.module_a = true

test/require/b.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
var tape = require('../..');
22

33
tape.test('module-b', function(t) {
4+
t.plan(1)
45
t.pass('loaded module b')
5-
t.end()
66
})
77

88
global.module_b = true

0 commit comments

Comments
 (0)