We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6566307 commit e34c30cCopy full SHA for e34c30c
test/common/debugger.js
@@ -7,7 +7,13 @@ const BREAK_MESSAGE = new RegExp('(?:' + [
7
'exception', 'other', 'promiseRejection',
8
].join('|') + ') in', 'i');
9
10
-const TIMEOUT = common.platformTimeout(5000);
+let TIMEOUT = common.platformTimeout(5000);
11
+if (common.isWindows) {
12
+ // Some of the windows machines in the CI need more time to receive
13
+ // the outputs from the client.
14
+ // https://github.com/nodejs/build/issues/3014
15
+ TIMEOUT = common.platformTimeout(15000);
16
+}
17
18
function isPreBreak(output) {
19
return /Break on start/.test(output) && /1 \(function \(exports/.test(output);
0 commit comments