mirror of
https://github.com/zebrajr/node.git
synced 2025-12-06 12:20:27 +01:00
test: increase debugger waitFor timeout on macOS
PR-URL: https://github.com/nodejs/node/pull/60367 Refs: https://github.com/nodejs/node/actions/runs/18694915575/job/53309761263?pr=60343 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
This commit is contained in:
parent
6226357237
commit
2bda7cbfb6
|
|
@ -7,12 +7,10 @@ const BREAK_MESSAGE = new RegExp('(?:' + [
|
|||
'exception', 'other', 'promiseRejection', 'step',
|
||||
].join('|') + ') in', 'i');
|
||||
|
||||
// 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.
|
||||
// https://github.com/nodejs/build/issues/3014
|
||||
// Some macOS and Windows machines require more time to receive the outputs from the client.
|
||||
// https://github.com/nodejs/build/issues/3014
|
||||
if (common.isWindows || common.isMacOS) {
|
||||
TIMEOUT = common.platformTimeout(15000);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user