Skip to content

Commit

Permalink
chore: update vscode launch config for ava
Browse files Browse the repository at this point in the history
  • Loading branch information
RebeccaStevens committed Jul 30, 2021
1 parent ed56310 commit e1e3e9e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .vscode/launch.json
Expand Up @@ -7,13 +7,15 @@
{
"type": "node",
"request": "launch",
"name": "Jest Test Current Test File",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"name": "AVA Test Current Test File",
"program": "${workspaceFolder}/node_modules/.bin/ava",
"args": [
"--runInBand",
"--no-coverage",
"${relativeFile}"
],
"outputCapture": "std",
"skipFiles": [
"<node_internals>/**/*.js"
],
"sourceMaps": true,
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
Expand Down

0 comments on commit e1e3e9e

Please sign in to comment.