Last active
February 5, 2020 18:09
-
-
Save alisonailea/8c1461aff5dfb3085b96fcb9852d2af4 to your computer and use it in GitHub Desktop.
VSCode Debugger - Ava Tests
This file contains hidden or 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
{ | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Debug AVA test file", | |
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/ava", | |
"runtimeArgs": [ | |
"debug", | |
"--config", | |
"${workspaceFolder}/debug.config.js", | |
"--break", | |
"--serial", | |
"${file}" | |
], | |
"port": 9229, | |
"outputCapture": "std", | |
"skipFiles": [ | |
"<node_internals>/**/*.js" | |
] | |
} | |
] | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment