From c68fcf32d5521e2a5cdc5b4f027a4a01f744b857 Mon Sep 17 00:00:00 2001 From: Joyee Cheung Date: Fri, 24 Jul 2026 17:35:28 +0200 Subject: [PATCH] test: increase timeout in probe-failure-hang-during-evaluate On slower CI machines, the probed process may take longer time to bootstrap and establish connection to. Increase the timeout so it's more likely to finish testing before timing out. Signed-off-by: Joyee Cheung --- .../test-debugger-probe-failure-hang-during-evaluate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel/test-debugger-probe-failure-hang-during-evaluate.js b/test/parallel/test-debugger-probe-failure-hang-during-evaluate.js index 82ff78ca6f78ad..705557285c6c53 100644 --- a/test/parallel/test-debugger-probe-failure-hang-during-evaluate.js +++ b/test/parallel/test-debugger-probe-failure-hang-during-evaluate.js @@ -12,7 +12,7 @@ const { assertProbeJson } = require('../common/debugger-probe'); const cwd = fixtures.path('debugger'); const fixture = 'probe-inspector-close-two-probes.js'; const marker = 'probe-inspector-close-marker'; -const timeoutMs = common.platformTimeout(1000); +const timeoutMs = common.platformTimeout(3000); const probes = [ { expr: 'closeInspector()', target: { suffix: fixture, line: 10 } }, { expr: 'firstProbeLine', target: { suffix: fixture, line: 11 } },