Skip to content

Instantly share code, notes, and snippets.

@tugberkugurlu
Created August 8, 2016 15:27
Show Gist options
  • Save tugberkugurlu/ee75170c62374e2e7dd8e728565fa0a9 to your computer and use it in GitHub Desktop.
Save tugberkugurlu/ee75170c62374e2e7dd8e728565fa0a9 to your computer and use it in GitHub Desktop.
{
"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