Skip to content

Commit

Permalink
test: improve timeout duration for debugger events
Browse files Browse the repository at this point in the history
PR-URL: #56970
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Chemi Atlow <[email protected]>
Reviewed-By: Kohei Ueno <[email protected]>
  • Loading branch information
anonrig authored Feb 10, 2025
1 parent f9ea8d6 commit de1b345
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/common/debugger.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ const BREAK_MESSAGE = new RegExp('(?:' + [
'exception', 'other', 'promiseRejection', 'step',
].join('|') + ') in', 'i');

let TIMEOUT = common.platformTimeout(5000);
// Some macOS machines require more time to receive the outputs from the client.
let TIMEOUT = common.platformTimeout(10000);
if (common.isWindows) {
// Some of the windows machines in the CI need more time to receive
// the outputs from the client.
Expand Down

0 comments on commit de1b345

Please sign in to comment.