Skip to content

Commit

Permalink
chore: add vscode configuration to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
danielduarte committed Oct 16, 2022
1 parent 92a829b commit 0e86932
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"version": "0.2.0",
"configurations": [
{
"args": [
"--require",
"ts-node/register",
"--colors",
"${workspaceFolder}/test/*.ts"
],
"internalConsoleOptions": "openOnSessionStart",
"name": "Run Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"request": "launch",
"skipFiles": [
"<node_internals>/**"
],
"type": "node"
}
]
}

0 comments on commit 0e86932

Please sign in to comment.