mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-10 22:21:22 -07:00
fix(test): Enable Ctrl+C exit test (#11618)
This commit is contained in:
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user