diff --git a/.vscode/launch.json b/.vscode/launch.json index 322d91bce37..c23d7803a83 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -7,10 +7,28 @@ "request": "launch", "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha", "stopOnEntry": false, + "args": [ + "--timeout", + "999999" + ], + "cwd": "${workspaceRoot}", + "runtimeArgs": [], + "env": {}, + "sourceMaps": true, + "outDir": "${workspaceRoot}/out" + }, + { + "name": "Stacks Tests", + "type": "node", + "request": "launch", + "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha", + "stopOnEntry": false, "args": [ "--timeout", "999999", - "--colors" + "--colors", + "-g", + "Stacks" ], "cwd": "${workspaceRoot}", "runtimeArgs": [],