Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save panduroab/c8da886ac91c10d2e307e19abe59c56a to your computer and use it in GitHub Desktop.

Select an option

Save panduroab/c8da886ac91c10d2e307e19abe59c56a to your computer and use it in GitHub Desktop.
.vscode/launch.json
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Mocha Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/test/**/*.js"
],
"internalConsoleOptions": "openOnSessionStart"
},
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/index.js"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment