Skip to content

Instantly share code, notes, and snippets.

@flpwgr
Last active January 5, 2018 10:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flpwgr/0ca59f6f176499402b2af3d999e301ed to your computer and use it in GitHub Desktop.
Save flpwgr/0ca59f6f176499402b2af3d999e301ed to your computer and use it in GitHub Desktop.
Debug Jest Tests in Visual Studio Code
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Jest Tests New",
"program": "${workspaceRoot}/node_modules/.bin/jest",
"args": [
"-i",
"--watch"
],
"console": "integratedTerminal",
"internalConsoleOptions": "openOnSessionStart",
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment