From 268627469b384ba3fa8dfe2e05b5186248013070 Mon Sep 17 00:00:00 2001 From: Shreya Keshive Date: Tue, 5 Aug 2025 18:52:58 -0400 Subject: Refactor IDE client state management, improve user-facing error messages, and add logging of connection events (#5591) Co-authored-by: matt korwel --- packages/cli/src/config/config.test.ts | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'packages/cli/src/config/config.test.ts') diff --git a/packages/cli/src/config/config.test.ts b/packages/cli/src/config/config.test.ts index f5d0ddf8..64ecdbb8 100644 --- a/packages/cli/src/config/config.test.ts +++ b/packages/cli/src/config/config.test.ts @@ -1007,16 +1007,6 @@ describe('loadCliConfig ideModeFeature', () => { const config = await loadCliConfig(settings, [], 'test-session', argv); expect(config.getIdeModeFeature()).toBe(false); }); - - it('should be false when settings.ideModeFeature is true, but SANDBOX is set', async () => { - process.argv = ['node', 'script.js']; - const argv = await parseArguments(); - process.env.TERM_PROGRAM = 'vscode'; - process.env.SANDBOX = 'true'; - const settings: Settings = { ideModeFeature: true }; - const config = await loadCliConfig(settings, [], 'test-session', argv); - expect(config.getIdeModeFeature()).toBe(false); - }); }); vi.mock('fs', async () => { -- cgit v1.2.3