Skip to content

Instantly share code, notes, and snippets.

@pmalmgren
Created December 4, 2017 18:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pmalmgren/88ac4f9c7503d7e1bc23996ab7461539 to your computer and use it in GitHub Desktop.
Save pmalmgren/88ac4f9c7503d7e1bc23996ab7461539 to your computer and use it in GitHub Desktop.
Debug Jest from vscode
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Jest Tests",
"program": "${workspaceRoot}/node_modules/jest/bin/jest.js",
"args": [
"-i"
],
"internalConsoleOptions": "openOnSessionStart",
"outFiles": [
"${workspaceRoot}/dist/**/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment