Skip to content

Commit db3a45e

Browse files
committed
update test/timeoutAfter.js to use concat-stream instead of tap.createConsumer (method unavailable in tap v7) see: #312 (comment)
1 parent fd7eb30 commit db3a45e

File tree

1 file changed

+19
-24
lines changed

1 file changed

+19
-24
lines changed

test/timeoutAfter.js

+19-24
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,29 @@
11
var tape = require('../');
22
var tap = require('tap');
3-
var trim = require('string.prototype.trim');
3+
var concat = require('concat-stream');
44

55
tap.test('timeoutAfter test', function (tt) {
66
tt.plan(1);
7-
7+
88
var test = tape.createHarness();
9-
var tc = tap.createConsumer();
10-
11-
var rows = [];
12-
tc.on('data', function (r) { rows.push(r) });
13-
tc.on('end', function () {
14-
var rs = rows.map(function (r) {
15-
if (r && typeof r === 'object') {
16-
return { id : r.id, ok : r.ok, name : trim(r.name) };
17-
}
18-
else return r;
19-
});
20-
tt.same(rs, [
9+
var tc = function (rows) {
10+
tt.same(rows.toString('utf8'), [
2111
'TAP version 13',
22-
'timeoutAfter',
23-
{ id: 1, ok: false, name: 'test timed out after 1ms' },
24-
'tests 1',
25-
'pass 0',
26-
'fail 1'
27-
]);
28-
});
29-
30-
test.createStream().pipe(tc);
31-
12+
'# timeoutAfter',
13+
'not ok 1 test timed out after 1ms',
14+
' ---',
15+
' operator: fail',
16+
' ...',
17+
'',
18+
'1..1',
19+
'# tests 1',
20+
'# pass 0',
21+
'# fail 1'
22+
].join('\n') + '\n');
23+
};
24+
25+
test.createStream().pipe(concat(tc));
26+
3227
test('timeoutAfter', function (t) {
3328
t.plan(1);
3429
t.timeoutAfter(1);

0 commit comments

Comments
 (0)