mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
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:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user