File tree 2 files changed +20
-0
lines changed
2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,11 @@ var tap = require('tap');
6
6
tap . test ( 'main harness object is exposed' , function ( tt ) {
7
7
tt . equal ( typeof tape . getHarness , 'function' , 'tape.getHarness is a function' ) ;
8
8
9
+ tt . equal ( typeof tape . run , 'function' , 'tape.run is a function' ) ;
10
+
9
11
tt . equal ( tape . getHarness ( ) . _results . pass , 0 ) ;
10
12
13
+ tt . equal ( tape . getHarness ( ) . run , undefined , 'tape.getHarness().run is undefined (wait not called)' ) ;
14
+
11
15
tt . end ( ) ;
12
16
} ) ;
Original file line number Diff line number Diff line change
1
+ 'use strict' ;
2
+
3
+ var tape = require ( '../' ) ;
4
+ var tap = require ( 'tap' ) ;
5
+
6
+ tap . test ( 'tape.wait()' , function ( tt ) {
7
+ tt . equal ( typeof tape . getHarness , 'function' , 'tape.getHarness is a function' ) ;
8
+
9
+ tt . equal ( typeof tape . run , 'function' , 'tape.run is a function' ) ;
10
+
11
+ tape . wait ( ) ;
12
+
13
+ tt . equal ( typeof tape . getHarness ( ) . run , 'function' , 'tape.getHarness().run is a function (wait called)' ) ;
14
+
15
+ tt . end ( ) ;
16
+ } ) ;
You can’t perform that action at this time.
0 commit comments