Skip to content

Commit 00e595a

Browse files
committed
update test/array.js to use concat-stream instead of tap.createConsumer() (no longer available in tap v7)
1 parent 28a1299 commit 00e595a

File tree

1 file changed

+24
-32
lines changed

1 file changed

+24
-32
lines changed

test/array.js

+24-32
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,53 @@
11
var falafel = require('falafel');
22
var tape = require('../');
33
var tap = require('tap');
4-
var trim = require('string.prototype.trim');
4+
var concat = require('concat-stream');
55

66
tap.test('array test', function (tt) {
77
tt.plan(1);
8-
8+
99
var test = tape.createHarness();
10-
var tc = tap.createConsumer();
11-
12-
var rows = [];
13-
tc.on('data', function (r) { rows.push(r) });
14-
tc.on('end', function () {
15-
var rs = rows.map(function (r) {
16-
if (r && typeof r === 'object') {
17-
return { id : r.id, ok : r.ok, name : trim(r.name) };
18-
}
19-
else return r;
20-
});
21-
tt.same(rs, [
10+
11+
test.createStream().pipe(concat(function (rows) {
12+
tt.same(rows.toString('utf8'), [
2213
'TAP version 13',
23-
'array',
24-
{ id: 1, ok: true, name: 'should be equivalent' },
25-
{ id: 2, ok: true, name: 'should be equivalent' },
26-
{ id: 3, ok: true, name: 'should be equivalent' },
27-
{ id: 4, ok: true, name: 'should be equivalent' },
28-
{ id: 5, ok: true, name: 'should be equivalent' },
29-
'tests 5',
30-
'pass 5',
31-
'ok'
32-
]);
33-
});
34-
35-
test.createStream().pipe(tc);
36-
14+
'# array',
15+
'ok 1 should be equivalent',
16+
'ok 2 should be equivalent',
17+
'ok 3 should be equivalent',
18+
'ok 4 should be equivalent',
19+
'ok 5 should be equivalent',
20+
'',
21+
'1..5',
22+
'# tests 5',
23+
'# pass 5',
24+
'',
25+
'# ok'
26+
].join('\n') + '\n');
27+
}));
28+
3729
test('array', function (t) {
3830
t.plan(5);
39-
31+
4032
var src = '(' + function () {
4133
var xs = [ 1, 2, [ 3, 4 ] ];
4234
var ys = [ 5, 6 ];
4335
g([ xs, ys ]);
4436
} + ')()';
45-
37+
4638
var output = falafel(src, function (node) {
4739
if (node.type === 'ArrayExpression') {
4840
node.update('fn(' + node.source() + ')');
4941
}
5042
});
51-
43+
5244
var arrays = [
5345
[ 3, 4 ],
5446
[ 1, 2, [ 3, 4 ] ],
5547
[ 5, 6 ],
5648
[ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ],
5749
];
58-
50+
5951
Function(['fn','g'], output)(
6052
function (xs) {
6153
t.same(arrays.shift(), xs);

0 commit comments

Comments
 (0)