summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json21
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": [