Created
November 28, 2018 20:46
-
-
Save po5i/71a7e5b8e3226e28e7e5b33b6623a071 to your computer and use it in GitHub Desktop.
Mocha run and debug tests
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
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Mocha Test All", | |
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", | |
"args": [ | |
"--opts", | |
"${workspaceFolder}/test/mocha_dev.opts", | |
"${workspaceFolder}/test" | |
], | |
"env": { | |
"NODE_ENV": "test" | |
}, | |
"console": "integratedTerminal", | |
"internalConsoleOptions": "neverOpen" | |
}, | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Mocha Current File", | |
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", | |
"args": [ | |
"--opts", | |
"${workspaceFolder}/test/mocha_dev.opts", | |
"${file}" | |
], | |
"env": { | |
"NODE_ENV": "test" | |
}, | |
"console": "integratedTerminal", | |
"internalConsoleOptions": "neverOpen" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment