Skip to content

Commit 22680b0

Browse files
committedMay 15, 2015
Fail unfinished tests
Closes #129 If a test does not have a .end() (or a plan that would do the same) then emit a test failure. Note: this used to work in tap 0.x, though only by mistake. In tap 1.x, it started silently ignoring the un-run tests but otherwise passing, which is a TERRIBLE way to behave.
1 parent 7d073be commit 22680b0

File tree

4 files changed

+41
-7
lines changed

4 files changed

+41
-7
lines changed
 

‎lib/test.js

+7-2
Original file line numberDiff line numberDiff line change
@@ -136,12 +136,17 @@ Test.prototype.endAll = function () {
136136
var child = this._currentChild
137137
if (child) {
138138
child._queue = []
139+
if (!child._ended && !child._plan) {
140+
child.fail('test left unfinished: no end(), no plan()', {
141+
at: this._calledAt
142+
})
143+
}
144+
if (child.end)
145+
child.end()
Has conversations. Original line has conversations.
139146
if (child.endAll)
140147
child.endAll()
141148
if (child.kill)
142149
child.kill('SIGKILL')
143-
if (child.end)
144-
child.end()
145150
child._bailedOut = true
146151
}
147152

‎test/test/ok.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var t = require('../../lib/test.js')()
1+
var t = require('../..')
22

33
t.test('nesting', function (t) {
44
t.plan(2)
@@ -38,7 +38,3 @@ t.test('async kid', function (t) {
3838
})
3939

4040
t.pass('pass after async kid')
41-
42-
t.end()
43-
44-
t.pipe(process.stdout)

‎test/test/unfinished.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
var tap = require('../..')
2+
3+
tap.test('parent', function(t) {
4+
t.test('child 1', function(t) {
5+
t.test('grandchild 1', function(t) {
6+
t.pass('1')
7+
t.end()
8+
})
9+
})
10+
t.test('child 2', function(t) {
11+
t.test('grandchild 2', function(t) {
12+
t.pass('2')
13+
t.end()
14+
})
15+
})
16+
})

‎test/test/unfinished.tap

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
TAP version 13
2+
# Subtest: parent
3+
# Subtest: child 1
4+
# Subtest: grandchild 1
5+
ok 1 - 1
6+
1..1
7+
ok 1 - grandchild 1 ___/# time=[0-9.]+(ms)?/~~~
8+
9+
1..1
10+
ok 1 - child 1 ___/# time=[0-9.]+(ms)?/~~~
11+
12+
1..1
13+
ok 1 - parent ___/# time=[0-9.]+(ms)?/~~~
Has a conversation. Original line has a conversation.
14+
15+
1..1
16+
___/# time=[0-9.]+(ms)?/~~~
17+

1 commit comments

Comments
 (1)

rmg commented on Jul 23, 2015

@rmg
Member

I just noticed that the contents of test/test/unfinished.tap don't event remotely match the output described in #129 (comment)

@isaacs I think this commit accidentally added a regression test to ensure that this bug never gets fixed! @sam-github has reported as #152

Please sign in to comment.