Skip to content

Commit 7680b79

Browse files
committedMay 8, 2015
empty tests are not failures now (they're skips)
1 parent b295aee commit 7680b79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/exit-code.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ test('successes exit 0', function (t) {
4949
t.plan(2)
5050
var file = path.resolve(fixtures, 'trivial-success.js')
5151
spawn(node, [bin, file]).on('exit', function (code) {
52-
t.equal(code, 1)
52+
t.equal(code, 0)
5353
})
5454
spawn(node, [file]).on('exit', function (code) {
5555
t.equal(code, 0)

0 commit comments

Comments
 (0)
Please sign in to comment.