Skip to content

Commit 12773d1

Browse files
legendecasaduh95
authored andcommitted
test: increase debugger waitFor timeout on macOS
PR-URL: #60367 Refs: https://github.com/nodejs/node/actions/runs/18694915575/job/53309761263?pr=60343 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Joyee Cheung <[email protected]>
1 parent 0b38de3 commit 12773d1

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

test/common/debugger.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,10 @@ const BREAK_MESSAGE = new RegExp('(?:' + [
77
'exception', 'other', 'promiseRejection', 'step',
88
].join('|') + ') in', 'i');
99

10-
// Some macOS machines require more time to receive the outputs from the client.
1110
let TIMEOUT = common.platformTimeout(10000);
12-
if (common.isWindows) {
13-
// Some of the windows machines in the CI need more time to receive
14-
// the outputs from the client.
15-
// https://github.com/nodejs/build/issues/3014
11+
// Some macOS and Windows machines require more time to receive the outputs from the client.
12+
// https://github.com/nodejs/build/issues/3014
13+
if (common.isWindows || common.isMacOS) {
1614
TIMEOUT = common.platformTimeout(15000);
1715
}
1816

0 commit comments

Comments
 (0)