From 7f82a388dee95ae49ea861f568aca23d70c5c9bf Mon Sep 17 00:00:00 2001 From: Aiden Cline Date: Wed, 22 Jul 2026 21:20:37 +0000 Subject: [PATCH] test(cli): allow ACP process startup under load --- packages/cli/test/acp/subprocess.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/test/acp/subprocess.ts b/packages/cli/test/acp/subprocess.ts index 79afd1b152..0cb274658a 100644 --- a/packages/cli/test/acp/subprocess.ts +++ b/packages/cli/test/acp/subprocess.ts @@ -322,7 +322,7 @@ function spawnAcp(input: { readonly env: Record }): inputClosed = true await child.stdin.end() } - const exitCode = await withTimeout(child.exited, 5_000, "ACP did not exit after stdin EOF") + const exitCode = await withTimeout(child.exited, 45_000, "ACP did not exit after stdin EOF") await Promise.all([output, errors]) if (exitCode !== 0) throw new Error(`ACP exited with ${exitCode}: ${stderr}`) return exitCode