File tree 1 file changed +18
-12
lines changed
1 file changed +18
-12
lines changed Original file line number Diff line number Diff line change @@ -16,49 +16,53 @@ var canExit = typeof process !== 'undefined' && process
16
16
function createHarness ( conf_ ) {
17
17
var pending = [ ] ;
18
18
var running = false ;
19
-
19
+ var count = 0 ;
20
+
20
21
var began = false ;
21
22
var out = new Render ( ) ;
22
-
23
+
23
24
var test = function ( name , conf , cb ) {
25
+ count ++ ;
24
26
var t = new Test ( name , conf , cb ) ;
25
27
if ( ! conf || typeof conf !== 'object' ) conf = conf_ || { } ;
26
-
28
+
27
29
if ( conf . exit !== false && canEmitExit ) {
28
30
process . on ( 'exit' , function ( code ) {
29
31
t . _exit ( ) ;
30
32
out . close ( ) ;
31
33
if ( code === 0 && ! t . _ok ) process . exit ( 1 ) ;
32
34
} ) ;
33
35
}
34
-
36
+
35
37
process . nextTick ( function ( ) {
36
38
if ( ! out . piped ) out . pipe ( createDefaultStream ( ) ) ;
37
39
if ( ! began ) out . begin ( ) ;
38
40
began = true ;
39
-
41
+
40
42
var run = function ( ) {
41
43
running = true ;
42
44
out . push ( t ) ;
43
45
t . run ( ) ;
44
46
} ;
45
-
47
+
46
48
if ( running || pending . length ) {
47
49
pending . push ( run ) ;
48
50
}
49
51
else run ( ) ;
50
52
} ) ;
51
-
53
+
52
54
t . on ( 'test' , function sub ( st ) {
55
+ count ++ ;
53
56
st . on ( 'test' , sub ) ;
54
57
st . on ( 'end' , onend ) ;
55
58
} ) ;
56
-
59
+
57
60
t . on ( 'end' , onend ) ;
58
-
61
+
59
62
return t ;
60
-
63
+
61
64
function onend ( ) {
65
+ count -- ;
62
66
if ( this . _progeny . length ) {
63
67
var unshifts = this . _progeny . map ( function ( st ) {
64
68
return function ( ) {
@@ -73,14 +77,16 @@ function createHarness (conf_) {
73
77
process . nextTick ( function ( ) {
74
78
running = false ;
75
79
if ( pending . length ) return pending . shift ( ) ( ) ;
76
- out . close ( ) ;
80
+ if ( count === 0 ) {
81
+ out . close ( ) ;
82
+ }
77
83
if ( conf . exit !== false && canExit && ! t . _ok ) {
78
84
process . exit ( 1 ) ;
79
85
}
80
86
} ) ;
81
87
}
82
88
} ;
83
-
89
+
84
90
test . stream = out ;
85
91
return test ;
86
92
}
You can’t perform that action at this time.
0 commit comments