File tree 2 files changed +23
-21
lines changed
2 files changed +23
-21
lines changed Original file line number Diff line number Diff line change @@ -22,32 +22,34 @@ exports = module.exports = (function () {
22
22
} ;
23
23
} ) ( ) ;
24
24
25
- function createExitHarness ( ) {
25
+ function createExitHarness ( conf ) {
26
+ if ( ! conf ) conf = { } ;
26
27
var harness = createHarness ( ) ;
27
28
var stream = harness . createStream ( ) ;
28
29
stream . pipe ( createDefaultStream ( ) ) ;
29
30
30
31
var ended = false ;
31
32
stream . on ( 'end' , function ( ) { ended = true } ) ;
32
33
33
- if ( process . exit && process . _getActiveHandles ) {
34
- var iv = setInterval ( function ( ) {
35
- if ( process . _getActiveHandles ( ) . length > 1 ) return ;
36
-
37
- clearInterval ( iv ) ;
38
- setTimeout ( function ( ) {
39
- if ( ended ) return ;
40
- for ( var i = 0 ; i < harness . _tests . length ; i ++ ) {
41
- var t = harness . _tests [ i ] ;
42
- t . _exit ( ) ;
43
- }
44
- } , 100 ) ;
45
-
46
- setTimeout ( function ( ) {
47
- process . exit ( harness . _exitCode ) ;
48
- } , 105 ) ;
49
- } ) ;
50
- }
34
+ if ( conf . exit === false ) return harness ;
35
+ if ( ! process . exit || ! process . _getActiveHandles ) return harness ;
36
+
37
+ var iv = setInterval ( function ( ) {
38
+ if ( process . _getActiveHandles ( ) . length > 1 ) return ;
39
+
40
+ clearInterval ( iv ) ;
41
+ setTimeout ( function ( ) {
42
+ if ( ended ) return ;
43
+ for ( var i = 0 ; i < harness . _tests . length ; i ++ ) {
44
+ var t = harness . _tests [ i ] ;
45
+ t . _exit ( ) ;
46
+ }
47
+ } , 100 ) ;
48
+
49
+ setTimeout ( function ( ) {
50
+ process . exit ( harness . _exitCode ) ;
51
+ } , 105 ) ;
52
+ } ) ;
51
53
return harness ;
52
54
}
53
55
Original file line number Diff line number Diff line change 1
- var test = require ( '../' ) ;
2
- var harness = test . createHarness ( { exit : false } ) ;
1
+ var test = require ( 'tap' ) . test ;
2
+ var harness = require ( '../' ) . createHarness ( { exit : false } ) ;
3
3
4
4
// minimal write stream mockery
5
5
var collector = {
You can’t perform that action at this time.
0 commit comments