Created
January 25, 2021 18:23
-
-
Save pyrho/296e957645a2e5472c6368d6e9fb5fb0 to your computer and use it in GitHub Desktop.
VSCode launch.json for Typescript AVA unit tests
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Run AVA test", | |
"program": "${workspaceRoot}/node_modules/.bin/ava", | |
"args": [ | |
"${file}", | |
"-r ts-node/register" | |
], | |
"skipFiles": [ | |
"<node_internals>/**/*.js" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment