summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json10
1 files changed, 7 insertions, 3 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 291c3c06..605a464d 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -21,10 +21,14 @@
"type": "node",
"request": "launch",
"name": "Launch E2E",
- "runtimeExecutable": "npm",
- "runtimeArgs": ["run", "test:e2e", "read_many_files"],
+ "program": "${workspaceFolder}/integration-tests/run-tests.js",
+ "args": ["--verbose", "--keep-output", "list_directory"],
"skipFiles": ["<node_internals>/**"],
- "cwd": "${workspaceFolder}"
+ "cwd": "${workspaceFolder}",
+ "console": "integratedTerminal",
+ "env": {
+ "GEMINI_SANDBOX": "false"
+ }
},
{
"name": "Attach",