|
1 |
| -var tape = require('../'); |
2 |
| -var tap = require('tap'); |
| 1 | +var test = require('tap').test; |
3 | 2 | var concat = require('concat-stream');
|
| 3 | +var spawn = require('child_process').spawn; |
4 | 4 |
|
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); |
33 | 10 | });
|
| 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 | + })); |
34 | 27 | });
|
0 commit comments