We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9420e07 commit 5329dc6Copy full SHA for 5329dc6
test/harness.js
@@ -50,10 +50,11 @@ var wanted =
50
'# fail 1',
51
'' ];
52
53
-harness.stream.pipe(collector);
+var stream = harness.createStream();
54
+stream.pipe(collector);
55
56
test('correct output', function (t) {
- harness.stream.on('end', function () {
57
+ stream.on('end', function () {
58
// accept trailing whitespace, or multiple lines on the same write(),
59
var found = collector.written.join('').split(/\n/).map(function (s) {
60
return s.replace(/\s+$/, '');
0 commit comments