Created
June 9, 2020 23:58
-
-
Save panduroab/c8da886ac91c10d2e307e19abe59c56a to your computer and use it in GitHub Desktop.
.vscode/launch.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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