Skip to content

Commit

Permalink
chore: add launch config for vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
mirceanis committed Dec 8, 2020
1 parent 12e2b88 commit 4049843
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Jest All",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": [
"--runInBand", "--coverage=false"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true,
"windows": {
"program": "${workspaceFolder}/node_modules/jest/bin/jest",
}
}
]
}

0 comments on commit 4049843

Please sign in to comment.