Skip to content

Commit 6df7fc0

Browse files
author
James Halliday
committed
only the exported harness will be piped to the default stream
1 parent a5e709e commit 6df7fc0

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

index.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ var nextTick = typeof setImmediate !== 'undefined'
1414
: process.nextTick
1515
;
1616

17-
exports = module.exports = createHarness();
17+
exports = module.exports = (function () {
18+
var harness = createHarness();
19+
harness.stream.pipe(createDefaultStream());
20+
return harness;
21+
})();
1822
exports.createHarness = createHarness;
1923
exports.Test = Test;
2024
exports.test = exports; // tap compat
@@ -40,7 +44,5 @@ function createHarness (conf_) {
4044
return t;
4145
};
4246
test.stream = results;
43-
results.pipe(createDefaultStream());
44-
4547
return test;
4648
}

0 commit comments

Comments
 (0)