We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I had to add this patch to make tests work:
--- a/test/tests.js +++ b/test/tests.js @@ -173,7 +173,7 @@ var duplexStream = duplexer3(writable, readable); duplexStream.end("aaa"); - assert.equal(readable._readableState.flowing, null); + assert.equal(readable._readableState.flowing, false); var transformStream = new stream.Transform({ transform: function(chunk, encoding, cb) { @@ -183,10 +183,10 @@ }); writable.pipe(transformStream).pipe(readable); - assert.equal(readable._readableState.flowing, null); + assert.equal(readable._readableState.flowing, false); setTimeout(function() { - assert.equal(readable._readableState.flowing, null); + assert.equal(readable._readableState.flowing, false); var src = ""; duplexStream.on("data", function(buf) { @@ -198,7 +198,7 @@ done(); }); - assert.equal(readable._readableState.flowing, null); + assert.equal(readable._readableState.flowing, false); }); });
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Hello,
I had to add this patch to make tests work:
The text was updated successfully, but these errors were encountered: