From d587c6f1042824de7a1ae94eb1ea9c049cfc34c9 Mon Sep 17 00:00:00 2001 From: Blackoutta <37723456+Blackoutta@users.noreply.github.com> Date: Wed, 20 Aug 2025 08:32:08 +0800 Subject: Fix IDE Companion Connection in Proxy Environments (#6308) Co-authored-by: Jacob Richman --- .vscode/launch.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to '.vscode/launch.json') diff --git a/.vscode/launch.json b/.vscode/launch.json index 6e4a7605..0294e27e 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -67,6 +67,27 @@ "console": "integratedTerminal", "internalConsoleOptions": "neverOpen", "skipFiles": ["/**"] + }, + { + "name": "Debug Integration Test File", + "type": "node", + "request": "launch", + "runtimeExecutable": "npx", + "runtimeArgs": [ + "vitest", + "run", + "--root", + "./integration-tests", + "--inspect-brk=9229", + "${file}" + ], + "cwd": "${workspaceFolder}", + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen", + "skipFiles": ["/**"], + "env": { + "GEMINI_SANDBOX": "false" + } } ], "inputs": [ -- cgit v1.2.3