Created
February 24, 2017 18:27
-
-
Save suresk/e4a8b50f79c7e2be91a6170ecfbef11f to your computer and use it in GitHub Desktop.
Run a single Mocha file test in VS Code
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
{ | |
"name": "Debug with mocha", | |
"type": "node", | |
"request": "launch", | |
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha", | |
"stopOnEntry": false, | |
"args": ["--no-timeouts", "${relativeFile}"], | |
"cwd": "${workspaceRoot}" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment