We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92d6aa6 commit 99a5a87Copy full SHA for 99a5a87
1 file changed
test/parallel/test-stream-writable-aborted.js
@@ -14,12 +14,12 @@ const { Writable } = require('stream');
14
}
15
16
{
17
- const writable = new writable({
+ const writable = new Writable({
18
read() {
19
20
});
21
assert.strictEqual(writable.writableAborted, false);
22
writable.end();
23
- writable.destroy()
+ writable.destroy();
24
assert.strictEqual(writable.writableAborted, true);
25
0 commit comments