Skip to content

Instantly share code, notes, and snippets.

@cgiacomi
Created April 25, 2019 12:26
Show Gist options
  • Save cgiacomi/e575f204f58c28011af735abb6be0741 to your computer and use it in GitHub Desktop.
Save cgiacomi/e575f204f58c28011af735abb6be0741 to your computer and use it in GitHub Desktop.
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Mocha All",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/test/e2e"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"type": "node",
"request": "launch",
"name": "Mocha Current File",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"--timeout",
"999999",
"--colors",
"${file}"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment