@@ -36,7 +36,7 @@ function Results (stream) {
36
36
Results . prototype . push = function ( t , parentT ) {
37
37
var self = this ;
38
38
var write = function ( s ) { self . stream . queue ( s ) } ;
39
- t . on ( 'prerun' , function ( ) {
39
+ t . once ( 'prerun' , function ( ) {
40
40
self . running ++ ;
41
41
write ( '# ' + t . name + '\n' ) ;
42
42
} ) ;
@@ -50,13 +50,18 @@ Results.prototype.push = function (t, parentT) {
50
50
t . on ( 'plan' , function ( n ) { plan = n } ) ;
51
51
52
52
var subtests = 0 ;
53
+
53
54
t . on ( 'test' , function ( st ) {
54
55
subtests ++ ;
55
56
st . on ( 'end' , function ( ) {
56
57
subtests -- ;
58
+ if ( subtests === 1 ) nextTick ( function ( ) { st . run ( ) } ) ;
59
+ else if ( subtests === 0 && ! t . ended ) {
60
+ t . end ( ) ;
61
+ }
57
62
} ) ;
58
63
self . push ( st , t ) ;
59
- if ( subtests === 1 ) nextTick ( function ( ) { st . run ( ) } ) ;
64
+ if ( subtests === 1 ) st . run ( ) ;
60
65
} ) ;
61
66
62
67
t . on ( 'result' , function ( res ) {
@@ -70,19 +75,18 @@ Results.prototype.push = function (t, parentT) {
70
75
if ( res . ok ) self . pass ++
71
76
else self . fail ++
72
77
} ) ;
73
- t . on ( 'end' , onend ) ;
78
+ t . once ( 'end' , onend ) ;
74
79
75
80
function onend ( ) {
76
- if ( this . ended ) return ;
77
- if ( subtests !== 0 ) return ;
78
81
self . running -- ;
82
+ if ( subtests !== 0 ) return ;
79
83
80
- if ( self . running === 0 && self . tests . length === 0 ) {
81
- self . close ( ) ;
84
+ if ( self . running === 0 && self . tests . length ) {
85
+ var nt = self . tests . shift ( ) ;
86
+ nt . run ( ) ;
82
87
}
83
88
else if ( self . running === 0 ) {
84
- var t = self . tests . shift ( ) ;
85
- t . run ( ) ;
89
+ self . close ( ) ;
86
90
}
87
91
}
88
92
} ;
0 commit comments