We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5e709e commit 6df7fc0Copy full SHA for 6df7fc0
index.js
@@ -14,7 +14,11 @@ var nextTick = typeof setImmediate !== 'undefined'
14
: process.nextTick
15
;
16
17
-exports = module.exports = createHarness();
+exports = module.exports = (function () {
18
+ var harness = createHarness();
19
+ harness.stream.pipe(createDefaultStream());
20
+ return harness;
21
+})();
22
exports.createHarness = createHarness;
23
exports.Test = Test;
24
exports.test = exports; // tap compat
@@ -40,7 +44,5 @@ function createHarness (conf_) {
40
44
return t;
41
45
};
42
46
test.stream = results;
43
- results.pipe(createDefaultStream());
-
47
return test;
48
}
0 commit comments