Skip to content

Instantly share code, notes, and snippets.

@c01nd01r
Created January 29, 2018 10:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save c01nd01r/cb4cd5db5fe0c5528358eb6e364879c1 to your computer and use it in GitHub Desktop.
Save c01nd01r/cb4cd5db5fe0c5528358eb6e364879c1 to your computer and use it in GitHub Desktop.
vue jest vscode dubug config
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Jest Tests",
"type": "node",
"request": "launch",
"port": 9229,
"sourceMaps": true,
"runtimeArgs": [
"--inspect-brk",
"${workspaceRoot}/node_modules/.bin/jest",
"--runInBand"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment