Skip to content

Instantly share code, notes, and snippets.

@derikwhittaker
Created February 16, 2018 21:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save derikwhittaker/331d4a5befddf7fc6b2599f1ada5d866 to your computer and use it in GitHub Desktop.
Save derikwhittaker/331d4a5befddf7fc6b2599f1ada5d866 to your computer and use it in GitHub Desktop.
Working Launch.json file
{
"version": "0.2.0",
"configurations": [
{
"name": "Jest Tests",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/node_modules/jest-cli/bin/jest.js",
"stopOnEntry": false,
"args": ["--runInBand"],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"console": "internalConsole",
"sourceMaps": false,
"outFiles": []
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment