fix(tests): enable cyclic schema MCP tool test (#10912)

This commit is contained in:
Sandy Tao
2025-10-14 18:46:54 -07:00
committed by GitHub
parent dabe161a6f
commit 4f5b335792
5 changed files with 41 additions and 23 deletions
+2 -2
View File
@@ -16,7 +16,7 @@ describe.skip('Ctrl+C exit', () => {
const run = await rig.runInteractive();
// Send first Ctrl+C
run.type('\x03');
run.sendKeys('\x03');
await run.expectText('Press Ctrl+C again to exit', 5000);
@@ -40,7 +40,7 @@ describe.skip('Ctrl+C exit', () => {
}
// Send second Ctrl+C
run.type('\x03');
run.sendKeys('\x03');
const exitCode = await run.expectExit();
expect(exitCode, `Process exited with code ${exitCode}.`).toBe(0);