diff options
| author | Blackoutta <[email protected]> | 2025-08-20 08:32:08 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-20 00:32:08 +0000 |
| commit | d587c6f1042824de7a1ae94eb1ea9c049cfc34c9 (patch) | |
| tree | f1e42eba699ef032153875dbb0d7ef9bd982fb9b /.vscode | |
| parent | 6732665a080a5635368f37da532106edf83b8907 (diff) | |
Fix IDE Companion Connection in Proxy Environments (#6308)
Co-authored-by: Jacob Richman <[email protected]>
Diffstat (limited to '.vscode')
| -rw-r--r-- | .vscode/launch.json | 21 |
1 files changed, 21 insertions, 0 deletions
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": ["<node_internals>/**"] + }, + { + "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": ["<node_internals>/**"], + "env": { + "GEMINI_SANDBOX": "false" + } } ], "inputs": [ |
