Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add vscode debugger settings (#2276)
from #2276
  • Loading branch information
Kelly Selden authored and lukastaegert committed Jun 20, 2018
1 parent 2ce4a28 commit 605bdfc
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .vscode/launch.json
@@ -0,0 +1,22 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Mocha Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"-u",
"tdd",
"--timeout",
"999999",
"--colors"
],
"console": "integratedTerminal"
}
]
}

0 comments on commit 605bdfc

Please sign in to comment.