Skip to content

Instantly share code, notes, and snippets.

@stevez
Created June 4, 2016 01:55
Show Gist options
  • Save stevez/215da1bf346836d93712a2149d6d7068 to your computer and use it in GitHub Desktop.
Save stevez/215da1bf346836d93712a2149d6d7068 to your computer and use it in GitHub Desktop.
Debug mocha config file for visual studio code
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug mocha",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
"stopOnEntry": true,
"args": [],
"cwd": "${workspaceRoot}",
"runtimeExecutable": null,
"env": { "NODE_ENV": "production"}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment