Skip to content

Instantly share code, notes, and snippets.

@rangelvarnier
Created March 29, 2018 17:50
Show Gist options
  • Save rangelvarnier/36f71e2f3d9d7a3d7cd679309b256547 to your computer and use it in GitHub Desktop.
Save rangelvarnier/36f71e2f3d9d7a3d7cd679309b256547 to your computer and use it in GitHub Desktop.
vscode debug with tests configuration
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Jest All",
"program": "${workspaceFolder}/node_modules/jest/bin/jest",
"args": ["--runInBand"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"type": "node",
"request": "launch",
"name": "Jest Current File",
"program": "${workspaceFolder}/node_modules/jest/bin/jest",
"args": ["${file}"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/demo/index.js"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment