From c53e4e6c8ff4cf63a713a889f725df0a3e2265bf Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 16 Feb 2026 04:41:41 +0000 Subject: [PATCH] test: trim exec timeout waits for faster suite runtime --- src/process/exec.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/process/exec.test.ts b/src/process/exec.test.ts index dc0b820548..5129ea0c3c 100644 --- a/src/process/exec.test.ts +++ b/src/process/exec.test.ts @@ -41,7 +41,7 @@ describe("runCommandWithTimeout", () => { [process.execPath, "-e", "setTimeout(() => {}, 10_000)"], { timeoutMs: 5_000, - noOutputTimeoutMs: 100, + noOutputTimeoutMs: 80, }, ); @@ -73,7 +73,7 @@ describe("runCommandWithTimeout", () => { const result = await runCommandWithTimeout( [process.execPath, "-e", "setTimeout(() => {}, 10_000)"], { - timeoutMs: 60, + timeoutMs: 40, }, );