Skip to content

Instantly share code, notes, and snippets.

@alisonailea
Last active November 27, 2019 19:04
Show Gist options
  • Save alisonailea/efa29e767157684b8e29f76389b5e7ea to your computer and use it in GitHub Desktop.
Save alisonailea/efa29e767157684b8e29f76389b5e7ea to your computer and use it in GitHub Desktop.
VSCode Debugger - Jest Current File
{
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Jest Current File",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": [
"${workspaceFolder}/**/*.test.js",
"${fileBasenameNoExtension}",
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": false,
"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