Skip to content

Instantly share code, notes, and snippets.

@garrensmith
Last active February 2, 2017 12:50
Show Gist options
  • Save garrensmith/a51042d5e0d9c1ebbe864cfdeff77b5d to your computer and use it in GitHub Desktop.
Save garrensmith/a51042d5e0d9c1ebbe864cfdeff77b5d to your computer and use it in GitHub Desktop.
{
"version": "0.2.0",
"configurations": [
{
"name": "Tests",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/node_modules/jest/bin/jest.js",
"stopOnEntry": false,
"args": [
"--runInBand",
"--config",
"./jest-config.json"
],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"console": false,
"sourceMaps": false,
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment