From ed309096b12c4ab9aa2c1ccbae4e5f8b04a8a1e1 Mon Sep 17 00:00:00 2001 From: HugoMurillo Date: Thu, 25 Sep 2025 14:18:34 -0600 Subject: [PATCH] test: disable all IDE integration tests (#9524) Co-authored-by: Shreya Keshive --- integration-tests/ide-client.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-tests/ide-client.test.ts b/integration-tests/ide-client.test.ts index 4823990ba7..8c6ced1e81 100644 --- a/integration-tests/ide-client.test.ts +++ b/integration-tests/ide-client.test.ts @@ -52,7 +52,7 @@ const getFreePort = (): Promise => { }); }; -describe('IdeClient fallback connection logic', () => { +describe.skip('IdeClient fallback connection logic', () => { let server: TestMcpServer; let envPort: number; let pid: number; @@ -156,7 +156,7 @@ describe.skip('getIdeProcessId', () => { }, 10000); }); -describe('IdeClient with proxy', () => { +describe.skip('IdeClient with proxy', () => { let mcpServer: TestMcpServer; let proxyServer: net.Server; let mcpServerPort: number;