Skip to content

Instantly share code, notes, and snippets.

@nmchenry01
Last active August 31, 2020 21:31
Show Gist options
  • Select an option

  • Save nmchenry01/23dd6f2159e8ffb6a2c3997d02b3d8ce to your computer and use it in GitHub Desktop.

Select an option

Save nmchenry01/23dd6f2159e8ffb6a2c3997d02b3d8ce to your computer and use it in GitHub Desktop.
Jest debug configuraiton "Debugging NestJS with VSCode"
{
"name": "Debug Jest Tests",
"type": "node",
"request": "launch",
"runtimeArgs": [
"--inspect-brk",
"${workspaceRoot}/node_modules/.bin/jest",
"--runInBand",
"--coverage",
"false"
],
"console": "integratedTerminal"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment