diff --git a/.vscode/launch.json b/.vscode/launch.json index f8518282..90b62f3c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -14,6 +14,23 @@ "program": "${workspaceFolder}/bin/www", "outputCapture": "std", "envFile": "${workspaceFolder}/.env" + }, + { + "type": "node", + "request": "launch", + "name": "Run Regression Tests", + "skipFiles": [ + "/**" + ], + "runtimeExecutable": "npm", + "args": [ + "run", + "test" + ], + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen", + "outputCapture": "std", + "envFile": "${workspaceFolder}/.env" } ] } \ No newline at end of file