From 49b66733c24ed8f14bf0e57343752556dc268134 Mon Sep 17 00:00:00 2001 From: shishu314 Date: Tue, 14 Oct 2025 14:10:53 -0400 Subject: [PATCH] fix(infra) - Disable CTRL-C test (#11122) Co-authored-by: gemini-cli-robot --- 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 02c13dd15e..1a52ff16dd 100644 --- a/integration-tests/ctrl-c-exit.test.ts +++ b/integration-tests/ctrl-c-exit.test.ts @@ -8,7 +8,7 @@ import { describe, it, expect } from 'vitest'; import * as os from 'node:os'; import { TestRig } from './test-helper.js'; -describe('Ctrl+C exit', () => { +describe.skip('Ctrl+C exit', () => { it('should exit gracefully on second Ctrl+C', async () => { const rig = new TestRig(); await rig.setup('should exit gracefully on second Ctrl+C');