Skip to content

Instantly share code, notes, and snippets.

@pbroschwitz
Last active March 18, 2020 13:49
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 pbroschwitz/014cac5e4e7fb13e1235d86a1d65bdd4 to your computer and use it in GitHub Desktop.
Save pbroschwitz/014cac5e4e7fb13e1235d86a1d65bdd4 to your computer and use it in GitHub Desktop.
vscode launch.json - debug jest unit tests
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug Unit Tests",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run-script",
"test-debug",
"${file}"
],
"port": 9229
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment