Skip to content

Commit 45add17

Browse files
author
James Halliday
committed
complete double end test
1 parent 8d25028 commit 45add17

File tree

2 files changed

+32
-30
lines changed

2 files changed

+32
-30
lines changed

test/double_end.js

+23-30
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,27 @@
1-
var tape = require('../');
2-
var tap = require('tap');
1+
var test = require('tap').test;
32
var concat = require('concat-stream');
3+
var spawn = require('child_process').spawn;
44

5-
tap.test(function (t) {
6-
t.plan(1);
7-
8-
var test = tape.createHarness();
9-
var tc = tap.createConsumer();
10-
11-
var rows = [];
12-
tc.on('data', function (row) { rows.push(row) });
13-
tc.on('end', function () {
14-
t.deepEqual(rows, [
15-
'TAP version 13',
16-
'double end',
17-
{ id: 1, ok: true, name: 'should be equivalent' },
18-
{ id: 2, ok: false, name: '.end() called twice' },
19-
'tests 2',
20-
'pass 1',
21-
'fail 1',
22-
]);
23-
});
24-
25-
test.createStream().pipe(tc);
26-
27-
test('double end', function (tt) {
28-
tt.equal(1 + 1, 2);
29-
tt.end();
30-
setTimeout(function () {
31-
tt.end();
32-
}, 5);
5+
test(function (t) {
6+
t.plan(2);
7+
var ps = spawn(process.execPath, [ __dirname + '/double_end/double.js' ]);
8+
ps.on('exit', function (code) {
9+
t.equal(code, 1);
3310
});
11+
ps.stdout.pipe(concat(function (body) {
12+
t.equal(body.toString('utf8'), [
13+
'TAP version 13',
14+
'# double end',
15+
'ok 1 should be equal',
16+
'not ok 2 .end() called twice',
17+
' ---',
18+
' operator: fail',
19+
' ...',
20+
'',
21+
'1..2',
22+
'# tests 2',
23+
'# pass 1',
24+
'# fail 1',
25+
].join('\n') + '\n\n');
26+
}));
3427
});

test/double_end/double.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
var test = require('../../');
2+
3+
test('double end', function (t) {
4+
t.equal(1 + 1, 2);
5+
t.end();
6+
setTimeout(function () {
7+
t.end();
8+
}, 5);
9+
});

0 commit comments

Comments
 (0)