fix(test): Enable Ctrl+C exit test (#11618)

This commit is contained in:
Sandy Tao
2025-10-21 15:47:12 -07:00
committed by GitHub
parent 519bd57e55
commit ccf8d0ca31

View File

@@ -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();