Skip to content

Instantly share code, notes, and snippets.

@suresk
Created February 24, 2017 18:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suresk/e4a8b50f79c7e2be91a6170ecfbef11f to your computer and use it in GitHub Desktop.
Save suresk/e4a8b50f79c7e2be91a6170ecfbef11f to your computer and use it in GitHub Desktop.
Run a single Mocha file test in VS Code
{
"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