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 <jasnell@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com>
  • Loading branch information
anonrig authored and targos committed Feb 11, 2025
1 parent 60c8fc0 commit 5a9732e
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 5a9732e

Please sign in to comment.