-
Notifications
You must be signed in to change notification settings - Fork 31.2k
New issue
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
stream: fix error handling with async iteration #20329
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -115,6 +115,23 @@ async function tests() { | |
readable.destroy(new Error('kaboom')); | ||
})(); | ||
|
||
await (async function() { | ||
console.log('call next() after error'); | ||
const readable = new Readable({ | ||
read() {} | ||
}) | ||
|
||
let err | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit, missing semicolon. Please run |
||
try { | ||
const iterator = readable[Symbol.asyncIterator](); | ||
readable.destroy(new Error('kaboom')); | ||
await iterator.next(); | ||
} catch (e) { | ||
err = e; | ||
} | ||
assert.strictEqual(err.message, 'kaboom'); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we assert that we have reference equality and assert Node doesn't mutate the error (basically define the error above and assert that Also - you can use the newly added |
||
})(); | ||
|
||
await (async function() { | ||
console.log('read object mode'); | ||
const max = 42; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit, missing semicolon