Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
test: handle the case rejects resolved with no error
  • Loading branch information
kuriyosh committed Nov 19, 2021
commit c3ca76ae7331824c3323ad1557a728ec561924db
4 changes: 2 additions & 2 deletions test/parallel/test-readline-promises-interface.js
Original file line number Diff line number Diff line change
Expand Up @@ -919,9 +919,9 @@ for (let i = 0; i < 12; i++) {
assert.rejects(
rli.question('hello?', { signal }),
{
code: 'ABORT_ERR'
name: 'AbortError'
}
Comment thread
kuriyosh marked this conversation as resolved.
);
).then(common.mustCall());
rli.close();
}

Expand Down