Last active
January 6, 2019 05:07
-
-
Save vitali-s/f851788a7a6d8e2b46673f4e3da5a717 to your computer and use it in GitHub Desktop.
#vscode #mocha
This file contains 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 All", | |
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", | |
"args": [ | |
"--timeout", | |
"999999", | |
"--colors", | |
"${workspaceFolder}/test/*.ts", | |
"-r", | |
"ts-node/register" | |
], | |
"console": "integratedTerminal", | |
"internalConsoleOptions": "neverOpen" | |
}, | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Mocha Current File", | |
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", | |
"args": [ | |
"--timeout", | |
"999999", | |
"--colors", | |
"${file}", | |
"-r", | |
"ts-node/register" | |
], | |
"console": "integratedTerminal", | |
"internalConsoleOptions": "neverOpen" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment