test: reduce supervisor no-output wait threshold

This commit is contained in:
Peter Steinberger
2026-02-16 04:43:33 +00:00
parent c53e4e6c8f
commit 17d8e2a1c8

View File

@@ -26,7 +26,7 @@ describe("process supervisor", () => {
mode: "child",
argv: [process.execPath, "-e", "setTimeout(() => {}, 10_000)"],
timeoutMs: 5_000,
noOutputTimeoutMs: 70,
noOutputTimeoutMs: 55,
stdinMode: "pipe-closed",
});
const exit = await run.wait();