Skip to content

Commit 5a9732e

Browse files
anonrigtargos
authored andcommitted
test: improve timeout duration for debugger events
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>
1 parent 60c8fc0 commit 5a9732e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/common/debugger.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ const BREAK_MESSAGE = new RegExp('(?:' + [
77
'exception', 'other', 'promiseRejection', 'step',
88
].join('|') + ') in', 'i');
99

10-
let TIMEOUT = common.platformTimeout(5000);
10+
// Some macOS machines require more time to receive the outputs from the client.
11+
let TIMEOUT = common.platformTimeout(10000);
1112
if (common.isWindows) {
1213
// Some of the windows machines in the CI need more time to receive
1314
// the outputs from the client.

0 commit comments

Comments
 (0)