Skip to content

Commit

Permalink
chore: add test debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmcwhorter committed Feb 7, 2020
1 parent 1fdc1a7 commit ef01cbd
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@
"program": "${workspaceFolder}/dist/index.js",
"outFiles": ["${workspaceFolder}/**/*.js"],
"console": "integratedTerminal"
},
{
"name": "Debug Jest Tests",
"type": "node",
"request": "launch",
"runtimeArgs": ["--inspect-brk", "${workspaceRoot}/node_modules/.bin/jest", "--runInBand", "--coverage", "false"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"port": 9229
}
]
}

0 comments on commit ef01cbd

Please sign in to comment.