From c81701c86d7b6d90010042951c76b49011127182 Mon Sep 17 00:00:00 2001 From: Yagiz Nizipli Date: Sat, 8 Feb 2025 18:18:25 -0500 Subject: [PATCH] test: improve timeout duration for debugger events --- test/common/debugger.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/common/debugger.js b/test/common/debugger.js index d5d77fc7c648dd..dfa040aa453bec 100644 --- a/test/common/debugger.js +++ b/test/common/debugger.js @@ -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.