File tree 1 file changed +9
-3
lines changed
1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -100,11 +100,14 @@ Test.prototype._exit = function () {
100
100
this . _planError = true ;
101
101
this . fail ( 'plan != count' , {
102
102
expected : this . _plan ,
103
- actual : this . assertCount
103
+ actual : this . assertCount ,
104
+ exiting : true
104
105
} ) ;
105
106
}
106
107
else if ( ! this . ended ) {
107
- this . fail ( 'test exited without ending' ) ;
108
+ this . fail ( 'test exited without ending' , {
109
+ exiting : true
110
+ } ) ;
108
111
}
109
112
} ;
110
113
@@ -152,7 +155,10 @@ Test.prototype._assert = function assert (ok, opts) {
152
155
153
156
self . emit ( 'result' , res ) ;
154
157
155
- if ( self . _plan === self . assertCount ) {
158
+ if ( self . _plan === self . assertCount && extra . exiting ) {
159
+ if ( ! self . ended ) self . end ( ) ;
160
+ }
161
+ else if ( self . _plan === self . assertCount ) {
156
162
nextTick ( function ( ) {
157
163
if ( ! self . ended ) self . end ( ) ;
158
164
} ) ;
You can’t perform that action at this time.
0 commit comments