Skip to content

Instantly share code, notes, and snippets.

@thekarel
Created September 2, 2019 14:37
Show Gist options
  • Save thekarel/dfb0e34d2bffd810253adccfda70d88c to your computer and use it in GitHub Desktop.
Save thekarel/dfb0e34d2bffd810253adccfda70d88c to your computer and use it in GitHub Desktop.
Debug Jest test run in VSCode
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Jest Tests",
"program": "${workspaceRoot}/node_modules/.bin/jest",
"args": [
"-i"
],
// "preLaunchTask": "build",
"internalConsoleOptions": "openOnSessionStart",
"outFiles": [
"${workspaceRoot}/dist/**/*"
],
// "envFile": "${workspaceRoot}/.env"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment