Skip to content

Commit

Permalink
Change deprecated workspaceRoot variable to the equivalent workspaceF…
Browse files Browse the repository at this point in the history
…older

Fixes #2023.
  • Loading branch information
niktekusho authored and novemberborn committed Jan 27, 2019
1 parent b65c6d7 commit 0a5fe42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/recipes/debugging-with-vscode.md
Expand Up @@ -15,7 +15,7 @@ Add following to the `configurations` object:
"type": "node",
"request": "launch",
"name": "Run AVA test",
"program": "${workspaceRoot}/node_modules/ava/profile.js",
"program": "${workspaceFolder}/node_modules/ava/profile.js",
"args": [
"${file}"
],
Expand Down Expand Up @@ -46,7 +46,7 @@ By default AVA runs tests concurrently. This may complicate debugging. Add a con
"type": "node",
"request": "launch",
"name": "Run AVA test serially",
"program": "${workspaceRoot}/node_modules/ava/profile.js",
"program": "${workspaceFolder}/node_modules/ava/profile.js",
"args": [
"${file}",
"--serial"
Expand Down

0 comments on commit 0a5fe42

Please sign in to comment.