File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,14 @@ function createHarness (conf_) {
81
81
82
82
test . createStream = function ( ) {
83
83
if ( ! results ) results = createResultStream ( ) ;
84
- nextTick ( function ( ) { results . resume ( ) } ) ;
84
+
85
+ var _pause = results . pause ;
86
+ var paused = false ;
87
+ results . pause = function ( ) { paused = true } ;
88
+
89
+ nextTick ( function ( ) {
90
+ if ( ! paused ) results . resume ( ) ;
91
+ } ) ;
85
92
return results ;
86
93
} ;
87
94
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ Results.prototype.push = function (t, parentT) {
115
115
116
116
Results . prototype . close = function ( ) {
117
117
var self = this ;
118
- if ( self . closed ) self . stream . emit ( 'error' , new Error ( 'ALREADY CLOSED' ) ) ;
118
+ if ( self . closed ) self . stream . emit ( 'error' , new Error ( 'ALREADY CLOSED' ) ) ;
119
119
self . closed = true ;
120
120
var write = function ( s ) { self . stream . queue ( s ) } ;
121
121
You can’t perform that action at this time.
0 commit comments