Skip to content

Commit 606b141

Browse files
author
James Halliday
committed
check pause status before resuming
1 parent bd9e9a6 commit 606b141

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

index.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,14 @@ function createHarness (conf_) {
8181

8282
test.createStream = function () {
8383
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+
});
8592
return results;
8693
};
8794

lib/results.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Results.prototype.push = function (t, parentT) {
115115

116116
Results.prototype.close = function () {
117117
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'));
119119
self.closed = true;
120120
var write = function (s) { self.stream.queue(s) };
121121

0 commit comments

Comments
 (0)