Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions test/parallel/test-stream-readable-async-iterators.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,22 @@ async function tests() {
assert.strictEqual(received, 1);
}

{
console.log('destroyed will not deadlock');
const readable = new Readable();
readable.destroy();
process.nextTick(async () => {
readable.on('close', common.mustNotCall());
let received = 0;
for await (const k of readable) {
// Just make linting pass. This should never run.
assert.strictEqual(k, 'hello');
received++;
}
assert.strictEqual(received, 0);
});
}

{
console.log('push async');
const max = 42;
Expand Down