Skip to content

Instantly share code, notes, and snippets.

@ttu
Created February 4, 2020 08:09
Show Gist options
  • Save ttu/1b938982f0b558177f3286391a0a361e to your computer and use it in GitHub Desktop.
Save ttu/1b938982f0b558177f3286391a0a361e to your computer and use it in GitHub Desktop.
{
"type": "node",
"request": "launch",
"name": "Jest Debug Current File",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": [
"${file}",
"--config",
"jest.config.js",
"--testTimeout=50000",
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true,
"windows": {
"program": "${workspaceFolder}/node_modules/jest/bin/jest",
},
"env": {
"NODE_ENV": "test"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment