File tree 1 file changed +9
-2
lines changed
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,13 @@ var canEmitExit = typeof process !== 'undefined' && process
12
12
var canExit = typeof process !== 'undefined' && process
13
13
&& typeof process . exit === 'function'
14
14
;
15
+ var onexit = ( function ( ) {
16
+ var stack = [ ] ;
17
+ if ( canEmitExit ) process . on ( 'exit' , function ( code ) {
18
+ for ( var i = 0 ; i < stack . length ; i ++ ) stack [ i ] ( code ) ;
19
+ } ) ;
20
+ return function ( cb ) { stack . push ( cb ) } ;
21
+ } ) ( ) ;
15
22
16
23
function createHarness ( conf_ ) {
17
24
var pending = [ ] ;
@@ -26,8 +33,8 @@ function createHarness (conf_) {
26
33
var t = new Test ( name , conf , cb ) ;
27
34
if ( ! conf || typeof conf !== 'object' ) conf = conf_ || { } ;
28
35
29
- if ( conf . exit !== false && canEmitExit ) {
30
- process . on ( 'exit' , function ( code ) {
36
+ if ( conf . exit !== false ) {
37
+ onexit ( function ( code ) {
31
38
t . _exit ( ) ;
32
39
out . close ( ) ;
33
40
if ( ! code && ! t . _ok ) process . exit ( 1 ) ;
You can’t perform that action at this time.
0 commit comments