File tree 1 file changed +12
-2
lines changed
1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,16 @@ exports = module.exports = (function () {
20
20
if ( ! harness ) {
21
21
harness = createHarness ( ) ;
22
22
harness . createStream ( ) . pipe ( createDefaultStream ( ) ) ;
23
+
24
+ if ( process . exit && process . _getActiveHandles ) {
25
+ var iv = setInterval ( function ( ) {
26
+ if ( process . _getActiveHandles ( ) . length > 1 ) return ;
27
+ clearInterval ( iv ) ;
28
+ setTimeout ( function ( ) {
29
+ process . exit ( harness . _exitCode ) ;
30
+ } , 100 ) ;
31
+ } ) ;
32
+ }
23
33
}
24
34
return harness . apply ( this , arguments ) ;
25
35
} ;
@@ -32,7 +42,6 @@ exports.test = exports; // tap compat
32
42
var exitInterval ;
33
43
34
44
function createHarness ( conf_ ) {
35
- var exitCode = 0 ;
36
45
var results ;
37
46
38
47
var test = function ( name , conf , cb ) {
@@ -47,7 +56,7 @@ function createHarness (conf_) {
47
56
inspectCode ( st_ ) ;
48
57
} ) ;
49
58
st . on ( 'result' , function ( r ) {
50
- if ( ! r . ok ) exitCode = 1
59
+ if ( ! r . ok ) test . _exitCode = 1
51
60
} ) ;
52
61
} ) ( t ) ;
53
62
@@ -68,6 +77,7 @@ function createHarness (conf_) {
68
77
only = true ;
69
78
return test . apply ( null , arguments ) ;
70
79
} ;
80
+ test . _exitCode = 0 ;
71
81
72
82
return test ;
73
83
}
You can’t perform that action at this time.
0 commit comments