Created
August 8, 2016 15:27
-
-
Save tugberkugurlu/ee75170c62374e2e7dd8e728565fa0a9 to your computer and use it in GitHub Desktop.
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
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Run Tests", | |
| "type": "node", | |
| "request": "launch", | |
| "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha", | |
| "stopOnEntry": false, | |
| "args": [ | |
| "src/**/*.test.js", | |
| "--require", | |
| "test/setup.js", | |
| "--compilers", | |
| "js:babel-register", | |
| "--no-timeouts", | |
| "--colors" | |
| ], | |
| "cwd": "${workspaceRoot}", | |
| "runtimeExecutable": null, | |
| "sourceMaps": true, | |
| "env": { | |
| "NODE_ENV": "testing" | |
| } | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment