Translations: Français
You can debug your tests using Visual Studio Code.
You can use VS Code's “JavaScript Debug Terminal” to automatically debug AVA run on the command-line.
- From the Command Palette (F1 or command + shift + p / control + shift + p), run
Debug: JavaScript Debug Terminal
- Run
npx ava
in the terminal
Alternatively you can create a launch configuration, which makes it easier to debug individual test files.
- Open a workspace for your project.
- In the sidebar click the Debug handle.
- Create a
launch.json
file. - Select the Node.js environment.
- Add following to the
configurations
array and save changes:
{
"type": "node",
"request": "launch",
"name": "Debug AVA test file",
"program": "${workspaceFolder}/node_modules/ava/entrypoints/cli.mjs",
"args": [
"${file}"
],
"outputCapture": "std",
"console": "integratedTerminal", // optional
"skipFiles": [
"<node_internals>/**/*.js"
]
}
Open the file(s) you want to debug. You can set breakpoints or use the debugger
keyword.
Now, with a test file open, from the Debug menu run the Debug AVA test file configuration.
If you compile your test files into a different directory, and run the tests from that directory, the above configuration won't work.
Assuming the names of your test files are unique you could try the following configuration instead. This assumes the compile output is written to the build
directory. Adjust as appropriate:
{
"type": "node",
"request": "launch",
"name": "Debug AVA test file",
"program": "${workspaceFolder}/node_modules/ava/entrypoints/cli.mjs",
"args": [
"build/**/${fileBasenameNoExtension}.*"
],
"outputCapture": "std",
"console": "integratedTerminal", // optional
"skipFiles": [
"<node_internals>/**/*.js"
]
}
As Yarn's PnP (Plug'n'Play) installation strategy does not produce a node_modules
folder, the ava
binary must be called using yarn run
:
{
"type": "node",
"request": "launch",
"name": "Debug AVA test file",
"runtimeExecutable": "yarn",
"runtimeArgs": ["run", "ava"],
"args": ["${file}"],
"outputCapture": "std",
"console": "integratedTerminal", // optional
"skipFiles": [
"<node_internals>/**/*.js"
]
}
By default AVA runs tests concurrently. This may complicate debugging. Instead make sure AVA runs only one test at a time.
Note that, if your tests aren't properly isolated, certain test failures may not appear when running the tests serially.
If you use the debug terminal make sure to invoke AVA with npx ava --serial
.
Or, if you're using a launch configuration, add the --serial
argument:
{
"type": "node",
"request": "launch",
"name": "Debug AVA test file",
"program": "${workspaceFolder}/node_modules/ava/entrypoints/cli.mjs",
"args": [
"--serial",
"${file}"
],
"outputCapture": "std",
"console": "integratedTerminal", // optional
"skipFiles": [
"<node_internals>/**/*.js"
]
}