From ed32f985c676b8beb1f0fc51902dcb83ad155749 Mon Sep 17 00:00:00 2001 From: sudacode Date: Fri, 27 Mar 2026 02:24:56 -0700 Subject: [PATCH] test: increase launcher test timeout for CI stability --- launcher/main.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/launcher/main.test.ts b/launcher/main.test.ts index 551c787..cf7b1f1 100644 --- a/launcher/main.test.ts +++ b/launcher/main.test.ts @@ -36,6 +36,8 @@ function withTempDir(fn: (dir: string) => T): T { } } +const LAUNCHER_RUN_TIMEOUT_MS = 30000; + function runLauncher(argv: string[], env: NodeJS.ProcessEnv): RunResult { const result = spawnSync( process.execPath, @@ -43,7 +45,7 @@ function runLauncher(argv: string[], env: NodeJS.ProcessEnv): RunResult { { env, encoding: 'utf8', - timeout: 10000, + timeout: LAUNCHER_RUN_TIMEOUT_MS, }, ); return {