Skip to content

Instantly share code, notes, and snippets.

@jineeshjohn
Created January 23, 2020 13:13
Show Gist options
  • Save jineeshjohn/b05c16daaa429ec66b667d90201ce920 to your computer and use it in GitHub Desktop.
Save jineeshjohn/b05c16daaa429ec66b667d90201ce920 to your computer and use it in GitHub Desktop.
Debugging create react app jest test
// https://elijahmanor.com/cra-debug-vscode/
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug CRA Tests",
"type": "node",
"request": "launch",
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/react-scripts",
"args": [
"test",
"--runInBand",
"--no-cache",
"--env=jsdom"
],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment