Skip to content

Commit bd3f198

Browse files
author
James Halliday
committed
failing test for t.only() firing tests unnecessarily
1 parent a3d85bb commit bd3f198

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/only.js

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ var tape = require('../');
44
tap.test('tape only test', function (tt) {
55
var test = tape.createHarness({ exit: false });
66
var tc = tap.createConsumer();
7+
var ran = [];
78

89
var rows = []
910
tc.on('data', function (r) { rows.push(r) })
@@ -25,23 +26,27 @@ tap.test('tape only test', function (tt) {
2526
'pass 1',
2627
'ok'
2728
])
29+
tt.deepEqual(ran, [ 3 ]);
2830

2931
tt.end()
3032
})
3133

3234
test.createStream().pipe(tc)
3335

3436
test("never run fail", function (t) {
37+
ran.push(1);
3538
t.equal(true, false)
3639
t.end()
3740
})
3841

3942
test("never run success", function (t) {
43+
ran.push(2);
4044
t.equal(true, true)
4145
t.end()
4246
})
4347

4448
test.only("run success", function (t) {
49+
ran.push(3);
4550
t.ok(true, "assert name")
4651
t.end()
4752
})

0 commit comments

Comments
 (0)