From a6a2a9276ec51e5d314e9e38850716f7005c8f0f Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 23 Feb 2026 04:24:52 +0000 Subject: [PATCH] test: reduce exec timer test 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 8f8ae5d2787..349f3f8c16d 100644 --- a/src/process/exec.test.ts +++ b/src/process/exec.test.ts @@ -60,12 +60,12 @@ describe("runCommandWithTimeout", () => { "clearInterval(ticker);", "process.exit(0);", "}", - "}, 180);", + "}, 60);", ].join(" "), ], { timeoutMs: 5_000, - noOutputTimeoutMs: 500, + noOutputTimeoutMs: 250, }, );