We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b65c6d7 commit 0a5fe42Copy full SHA for 0a5fe42
docs/recipes/debugging-with-vscode.md
@@ -15,7 +15,7 @@ Add following to the `configurations` object:
15
"type": "node",
16
"request": "launch",
17
"name": "Run AVA test",
18
- "program": "${workspaceRoot}/node_modules/ava/profile.js",
+ "program": "${workspaceFolder}/node_modules/ava/profile.js",
19
"args": [
20
"${file}"
21
],
@@ -46,7 +46,7 @@ By default AVA runs tests concurrently. This may complicate debugging. Add a con
46
47
48
"name": "Run AVA test serially",
49
50
51
"${file}",
52
"--serial"
0 commit comments