File tree 1 file changed +5
-0
lines changed
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ var tape = require('../');
4
4
tap . test ( 'tape only test' , function ( tt ) {
5
5
var test = tape . createHarness ( { exit : false } ) ;
6
6
var tc = tap . createConsumer ( ) ;
7
+ var ran = [ ] ;
7
8
8
9
var rows = [ ]
9
10
tc . on ( 'data' , function ( r ) { rows . push ( r ) } )
@@ -25,23 +26,27 @@ tap.test('tape only test', function (tt) {
25
26
'pass 1' ,
26
27
'ok'
27
28
] )
29
+ tt . deepEqual ( ran , [ 3 ] ) ;
28
30
29
31
tt . end ( )
30
32
} )
31
33
32
34
test . createStream ( ) . pipe ( tc )
33
35
34
36
test ( "never run fail" , function ( t ) {
37
+ ran . push ( 1 ) ;
35
38
t . equal ( true , false )
36
39
t . end ( )
37
40
} )
38
41
39
42
test ( "never run success" , function ( t ) {
43
+ ran . push ( 2 ) ;
40
44
t . equal ( true , true )
41
45
t . end ( )
42
46
} )
43
47
44
48
test . only ( "run success" , function ( t ) {
49
+ ran . push ( 3 ) ;
45
50
t . ok ( true , "assert name" )
46
51
t . end ( )
47
52
} )
You can’t perform that action at this time.
0 commit comments