Skip to content

Instantly share code, notes, and snippets.

@alisonailea
Created November 27, 2019 19:00
Show Gist options
  • Save alisonailea/637478c2a5bde46e4c236bf0de0f7ce6 to your computer and use it in GitHub Desktop.
Save alisonailea/637478c2a5bde46e4c236bf0de0f7ce6 to your computer and use it in GitHub Desktop.
VSCode Debugger - Jest All
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Jest All",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": [],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"runtimeArgs": [
"--inspect-brk",
"${workspaceRoot}/node_modules/.bin/jest",
"--runInBand"
],
"disableOptimisticBPs": true,
"windows": {
"program": "${workspaceFolder}/node_modules/jest/bin/jest",
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment