Last active
March 22, 2017 08:54
-
-
Save banyudu/339df0e3b5c49bd44128c0120c7931d1 to your computer and use it in GitHub Desktop.
vscode launch.js for mocha test, copied from https://gist.github.com/paambaati/54d33e409b4f7cf059cc
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": "Run mocha", | |
"type": "node", | |
"request": "launch", | |
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha", | |
"stopOnEntry": false, | |
"args": ["test/**/*.js", "--no-timeouts"], | |
"cwd": "${workspaceRoot}", | |
"runtimeExecutable": null, | |
"env": { "NODE_ENV": "testing"} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment