summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authormatt korwel <[email protected]>2025-07-06 20:16:42 -0700
committerGitHub <[email protected]>2025-07-07 03:16:42 +0000
commit20825e41148a58998a6b1e5869149eac8d09cfbd (patch)
treea228489987cd2e50925e5c9e97f5b9d0aa9c5e73 /.vscode
parent39d4095a4c0f3478235aa0c80c94586b9e2662c2 (diff)
Release misc (#3418)
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",