Skip to content

Commit 8d5dc2f

Browse files
r0mflipljharb
authored andcommitted
[Fix] emit skipped tests as objects
1 parent a5006ce commit 8d5dc2f

File tree

6 files changed

+82
-10
lines changed

6 files changed

+82
-10
lines changed

lib/results.js

+7-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ Results.prototype.createStream = function (opts) {
4141
var row = {
4242
type: 'test',
4343
name: t.name,
44-
id: id
44+
id: id,
45+
skip: t._skip,
46+
todo: t._todo
4547
};
4648
if (has(extra, 'parent')) {
4749
row.parent = extra.parent;
@@ -97,7 +99,10 @@ Results.prototype._watch = function (t) {
9799
var self = this;
98100
var write = function (s) { self._stream.queue(s); };
99101
t.once('prerun', function () {
100-
write('# ' + t.name + '\n');
102+
var premsg = '';
103+
if (t._skip) premsg = 'SKIP ';
104+
else if (t._todo) premsg = 'TODO ';
105+
write('# ' + premsg + t.name + '\n');
101106
});
102107

103108
t.on('result', function (res) {

lib/test.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -83,16 +83,13 @@ function Test(name_, opts_, cb_) {
8383
}
8484

8585
Test.prototype.run = function () {
86-
if (this._skip) {
87-
this.comment('SKIP ' + this.name);
88-
}
86+
this.emit('prerun');
8987
if (!this._cb || this._skip) {
9088
return this._end();
9189
}
9290
if (this._timeout != null) {
9391
this.timeoutAfter(this._timeout);
9492
}
95-
this.emit('prerun');
9693
this._cb(this);
9794
this.emit('run');
9895
};

test/exit.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ tap.test('todo passing', function (t) {
155155
var tc = function (rows) {
156156
t.same(stripFullStack(rows.toString('utf8')), [
157157
'TAP version 13',
158-
'# todo pass',
158+
'# TODO todo pass',
159159
'ok 1 should be truthy # TODO',
160160
'',
161161
'1..1',
@@ -179,7 +179,7 @@ tap.test('todo failing', function (t) {
179179
var tc = function (rows) {
180180
t.same(stripFullStack(rows.toString('utf8')), [
181181
'TAP version 13',
182-
'# todo fail',
182+
'# TODO todo fail',
183183
'not ok 1 should be truthy # TODO',
184184
' ---',
185185
' operator: ok',

test/objectMode.js

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
var tap = require('tap');
2+
var tape = require('../');
3+
var forEach = require('for-each');
4+
var through = require('through');
5+
6+
tap.test('object results', function (assert) {
7+
var printer = through({ objectMode: true });
8+
var objects = [];
9+
10+
printer.write = function (obj) {
11+
objects.push(obj);
12+
};
13+
14+
printer.end = function (obj) {
15+
if (obj) objects.push(obj);
16+
17+
var todos = 0;
18+
var skips = 0;
19+
var testIds = [];
20+
var endIds = [];
21+
var asserts = 0;
22+
23+
assert.equal(objects.length, 13);
24+
25+
forEach(objects, function (obj) {
26+
if (obj.type === 'assert') {
27+
asserts++;
28+
} else if (obj.type === 'test') {
29+
testIds.push(obj.id);
30+
31+
if (obj.skip) {
32+
skips++;
33+
} else if (obj.todo) {
34+
todos++;
35+
}
36+
} else if (obj.type === 'end') {
37+
endIds.push(obj.text);
38+
// test object should exist
39+
assert.notEqual(testIds.indexOf(obj.test), -1);
40+
}
41+
});
42+
43+
assert.equal(asserts, 5);
44+
assert.equal(skips, 1);
45+
assert.equal(todos, 2);
46+
assert.equal(testIds.length, endIds.length);
47+
assert.end();
48+
};
49+
50+
tape.createStream({ objectMode: true })
51+
.pipe(printer);
52+
53+
tape('parent', function (t1) {
54+
t1.equal(true, true);
55+
t1.test('child1', {skip: true}, function (t2) {
56+
t2.equal(true, true);
57+
t2.equal(true, false);
58+
t2.end();
59+
});
60+
t1.test('child2', {todo: true}, function (t3) {
61+
t3.equal(true, false);
62+
t3.equal(true, true);
63+
t3.end();
64+
});
65+
t1.test('child3', {todo: true});
66+
t1.equal(true, true);
67+
t1.equal(true, true);
68+
t1.end();
69+
});
70+
});

test/todo.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ tap.test('tape todo test', function (assert) {
1515
'TAP version 13\n'
1616
+ '# success\n'
1717
+ 'ok 1 this test runs\n'
18-
+ '# failure\n'
18+
+ '# TODO failure\n'
1919
+ 'not ok 2 should never happen # TODO\n'
2020
+ ' ---\n'
2121
+ ' operator: fail\n'

test/todo_single.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ tap.test('tape todo test', function (assert) {
1313
assert.equal(
1414
stripFullStack(body.toString('utf8')),
1515
'TAP version 13\n'
16-
+ '# failure\n'
16+
+ '# TODO failure\n'
1717
+ 'not ok 1 should be equal # TODO\n'
1818
+ ' ---\n'
1919
+ ' operator: equal\n'

0 commit comments

Comments
 (0)