Skip to content

Commit 0a5fe42

Browse files
niktekushonovemberborn
authored andcommitted
Change deprecated workspaceRoot variable to the equivalent workspaceFolder
Fixes #2023.
1 parent b65c6d7 commit 0a5fe42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/recipes/debugging-with-vscode.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Add following to the `configurations` object:
1515
"type": "node",
1616
"request": "launch",
1717
"name": "Run AVA test",
18-
"program": "${workspaceRoot}/node_modules/ava/profile.js",
18+
"program": "${workspaceFolder}/node_modules/ava/profile.js",
1919
"args": [
2020
"${file}"
2121
],
@@ -46,7 +46,7 @@ By default AVA runs tests concurrently. This may complicate debugging. Add a con
4646
"type": "node",
4747
"request": "launch",
4848
"name": "Run AVA test serially",
49-
"program": "${workspaceRoot}/node_modules/ava/profile.js",
49+
"program": "${workspaceFolder}/node_modules/ava/profile.js",
5050
"args": [
5151
"${file}",
5252
"--serial"

0 commit comments

Comments
 (0)