Skip to content

Commit

Permalink
chore: vscode tests debug
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurfiorette committed Sep 13, 2021
1 parent 2bbc9cb commit b5c5905
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/node_modules
/dist
/ignore
/.vscode
/.vscode/settings.json
/package-lock.json
/coverage
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": [
{
"name": "Debug Jest Tests",
"type": "node",
"request": "launch",
"runtimeArgs": [
"--inspect-brk",
"${workspaceRoot}/node_modules/jest/bin/jest.js",
// Linux:
// "${workspaceRoot}/node_modules/.bin/jest",
"--runInBand"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"port": 9229
}
]
}

0 comments on commit b5c5905

Please sign in to comment.