Skip to content

Instantly share code, notes, and snippets.

@alisonailea
Last active February 5, 2020 18:09
Show Gist options
  • Save alisonailea/8c1461aff5dfb3085b96fcb9852d2af4 to your computer and use it in GitHub Desktop.
Save alisonailea/8c1461aff5dfb3085b96fcb9852d2af4 to your computer and use it in GitHub Desktop.
VSCode Debugger - Ava Tests
{
"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