From 2fa731514b1134535e72a93ff5508fc8ca787067 Mon Sep 17 00:00:00 2001 From: galz10 Date: Tue, 24 Mar 2026 17:04:34 -0700 Subject: [PATCH] test(integration): skip flaky 'should exit gracefully on second Ctrl+C' test This test is currently flaky on macOS and is causing E2E test failures in CI. --- integration-tests/ctrl-c-exit.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/ctrl-c-exit.test.ts b/integration-tests/ctrl-c-exit.test.ts index f3f3a74504..e97879f2cd 100644 --- a/integration-tests/ctrl-c-exit.test.ts +++ b/integration-tests/ctrl-c-exit.test.ts @@ -17,7 +17,7 @@ describe('Ctrl+C exit', () => { afterEach(async () => await rig.cleanup()); - it('should exit gracefully on second Ctrl+C', async () => { + it.skip('should exit gracefully on second Ctrl+C', async () => { await rig.setup('should exit gracefully on second Ctrl+C', { settings: { tools: { useRipgrep: false } }, });