Skip to content

Commit 82e316b

Browse files
committed
[Fix] tests without a callback that are *skipped* should not fail
1 parent fe17984 commit 82e316b

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

lib/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ Test.prototype.end = function (err) {
182182
Test.prototype._end = function (err) {
183183
var self = this;
184184

185-
if (!this._cb && !this._todo) this.fail('# TODO ' + this.name);
185+
if (!this._cb && !this._todo && !this._skip) this.fail('# TODO ' + this.name);
186186

187187
if (this._progeny.length) {
188188
var t = this._progeny.shift();

test/no_callback.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ tap.test('no callback', function (tt) {
1515

1616
tt.same(body, [
1717
'TAP version 13',
18+
'# group',
1819
'# No callback.',
1920
'not ok 1 # TODO No callback.',
2021
' ---',
@@ -23,6 +24,8 @@ tap.test('no callback', function (tt) {
2324
' Error: # TODO No callback.',
2425
' [... stack stripped ...]',
2526
' ...',
27+
'# SKIP No callback, skipped.',
28+
'# TODO No callback, todo.',
2629
'',
2730
'1..1',
2831
'# tests 1',
@@ -33,5 +36,13 @@ tap.test('no callback', function (tt) {
3336

3437
test.createStream().pipe(concat(tc));
3538

36-
test('No callback.');
39+
test('group', function (t) {
40+
t.plan(3);
41+
42+
t.test('No callback.');
43+
44+
t.test('No callback, skipped.', { skip: true });
45+
46+
t.test('No callback, todo.', { todo: true });
47+
});
3748
});

0 commit comments

Comments
 (0)