test: improve timeout duration for debugger events

PR-URL: https://github.com/nodejs/node/pull/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>
This commit is contained in:
Yagiz Nizipli
2025-02-10 18:27:08 -05:00
committed by GitHub
parent f9ea8d6dff
commit de1b34557b

View File

@@ -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.