Skip to content

Commit

Permalink
Add VS Code launch configuration that runs the regression tests to ma…
Browse files Browse the repository at this point in the history
…ke debugging tests easier
  • Loading branch information
seansica committed Nov 2, 2023
1 parent d47ef2b commit 7985733
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,23 @@
"program": "${workspaceFolder}/bin/www",
"outputCapture": "std",
"envFile": "${workspaceFolder}/.env"
},
{
"type": "node",
"request": "launch",
"name": "Run Regression Tests",
"skipFiles": [
"<node_internals>/**"
],
"runtimeExecutable": "npm",
"args": [
"run",
"test"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"outputCapture": "std",
"envFile": "${workspaceFolder}/.env"
}
]
}

0 comments on commit 7985733

Please sign in to comment.