From ccf8d0ca31929623cfb71a204f4c56dabb731147 Mon Sep 17 00:00:00 2001 From: Sandy Tao Date: Tue, 21 Oct 2025 15:47:12 -0700 Subject: [PATCH] fix(test): Enable Ctrl+C exit test (#11618) --- integration-tests/ctrl-c-exit.test.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/integration-tests/ctrl-c-exit.test.ts b/integration-tests/ctrl-c-exit.test.ts index 3d95f11bb9..0e53376865 100644 --- a/integration-tests/ctrl-c-exit.test.ts +++ b/integration-tests/ctrl-c-exit.test.ts @@ -9,9 +9,11 @@ import * as os from 'node:os'; import { TestRig } from './test-helper.js'; describe('Ctrl+C exit', () => { - it.skip('should exit gracefully on second Ctrl+C', async () => { + it('should exit gracefully on second Ctrl+C', async () => { const rig = new TestRig(); - await rig.setup('should exit gracefully on second Ctrl+C'); + await rig.setup('should exit gracefully on second Ctrl+C', { + settings: { tools: { useRipgrep: false } }, + }); const run = await rig.runInteractive();