Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions test/common/debugger.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ const BREAK_MESSAGE = new RegExp('(?:' + [
].join('|') + ') in', 'i');

let TIMEOUT = common.platformTimeout(10000);
// Some macOS and Windows machines require more time to receive the outputs from the client.
// Some macOS and Windows machines require more time to receive the outputs from the
// client, especially under CI load where the async Debugger.getScriptSource CDP
// round-trip in the initial break handler can be slow.
// https://github.com/nodejs/build/issues/3014
if (common.isWindows || common.isMacOS) {
TIMEOUT = common.platformTimeout(15000);
TIMEOUT = common.platformTimeout(30000);
}

function isPreBreak(output) {
Expand Down
Loading