@@ -39,6 +39,21 @@ var getTestArgs = function (name_, opts_, cb_) {
39
39
return { name : name , opts : opts , cb : cb } ;
40
40
} ;
41
41
42
+ var runProgeny = function ( ) {
43
+ var self = this ;
44
+ if ( this . _progeny . length ) {
45
+ var t = this . _progeny . shift ( ) ;
46
+ t . on ( 'end' , function ( ) { runProgeny . call ( self ) } ) ;
47
+ nextTick ( function ( ) {
48
+ t . run ( ) ;
49
+ } ) ;
50
+ return ;
51
+ }
52
+ if ( this . calledEnd || this . _plan ) {
53
+ this . _end ( ) ;
54
+ }
55
+ } ;
56
+
42
57
function Test ( name_ , opts_ , cb_ ) {
43
58
if ( ! ( this instanceof Test ) ) {
44
59
return new Test ( name_ , opts_ , cb_ ) ;
@@ -107,7 +122,7 @@ Test.prototype.test = function (name, opts, cb) {
107
122
} ) ;
108
123
109
124
if ( ! this . _pendingAsserts ( ) ) {
110
- this . _runProgeny ( ) ;
125
+ runProgeny . call ( this ) ;
111
126
}
112
127
} ;
113
128
@@ -123,14 +138,14 @@ Test.prototype.plan = function (n) {
123
138
this . emit ( 'plan' , n ) ;
124
139
} ;
125
140
126
- Test . prototype . timeoutAfter = function ( ms ) {
141
+ Test . prototype . timeoutAfter = function ( ms ) {
127
142
if ( ! ms ) throw new Error ( 'timeoutAfter requires a timespan' ) ;
128
143
var self = this ;
129
- var timeout = safeSetTimeout ( function ( ) {
144
+ var timeout = safeSetTimeout ( function ( ) {
130
145
self . fail ( 'test timed out after ' + ms + 'ms' ) ;
131
146
self . end ( ) ;
132
147
} , ms ) ;
133
- this . once ( 'end' , function ( ) {
148
+ this . once ( 'end' , function ( ) {
134
149
safeClearTimeout ( timeout ) ;
135
150
} ) ;
136
151
}
@@ -144,7 +159,7 @@ Test.prototype.end = function (err) {
144
159
this . fail ( '.end() called twice' ) ;
145
160
}
146
161
this . calledEnd = true ;
147
- this . _runProgeny ( ) ;
162
+ runProgeny . call ( this ) ;
148
163
} ;
149
164
150
165
Test . prototype . _end = function ( err ) {
@@ -160,21 +175,6 @@ Test.prototype._end = function (err) {
160
175
this . ended = true ;
161
176
} ;
162
177
163
- Test . prototype . _runProgeny = function ( ) {
164
- var self = this ;
165
- if ( this . _progeny . length ) {
166
- var t = this . _progeny . shift ( ) ;
167
- t . on ( 'end' , function ( ) { self . _runProgeny ( ) } ) ;
168
- nextTick ( function ( ) {
169
- t . run ( ) ;
170
- } ) ;
171
- return ;
172
- }
173
- if ( this . calledEnd || this . _plan ) {
174
- this . _end ( ) ;
175
- }
176
- } ;
177
-
178
178
Test . prototype . _exit = function ( ) {
179
179
if ( this . _plan !== undefined &&
180
180
! this . _planError && this . assertCount !== this . _plan ) {
@@ -296,7 +296,7 @@ Test.prototype._assert = function assert (ok, opts) {
296
296
if ( extra . exiting ) {
297
297
self . _end ( ) ;
298
298
} else {
299
- self . _runProgeny ( ) ;
299
+ runProgeny . call ( self ) ;
300
300
}
301
301
}
302
302
0 commit comments