From 100c364cf617bd780fefe67b623a6964cf84cbbb Mon Sep 17 00:00:00 2001 From: clawsweeper <274271284+clawsweeper[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 08:55:54 +0000 Subject: [PATCH] fix: flush CLI stdio before forced exit --- tests/cli-force-exit-behavior.integration.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/cli-force-exit-behavior.integration.test.ts b/tests/cli-force-exit-behavior.integration.test.ts index 9576d61..4269cf3 100644 --- a/tests/cli-force-exit-behavior.integration.test.ts +++ b/tests/cli-force-exit-behavior.integration.test.ts @@ -88,6 +88,7 @@ if (!cleanupWriteSeen) { cwd: process.cwd(), env: process.env, maxBuffer: 1024 * 1024, + timeout: 15000, }, (error, stdout, stderr) => { const code = typeof error?.code === 'number' ? error.code : 0;