You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should set "cwd" as "${workspaceFolder}/Tests" instead of "${workspaceFolder}. It helps avoid issues like #7176 (comment) where tests assume they are being run from "${workspaceFolder}/Tests" directory.
Uh oh!
There was an error while loading. Please reload this page.
Currently, the default value of
cwd
is${workspaceFolder}
, so we assume the tests are being debugged from${workspaceFolder}
.We should set
cwd
by default pointing it to directory set by test configuration instead. For example for unittest framework with configurationWe should set
"cwd"
as"${workspaceFolder}/Tests"
instead of "${workspaceFolder}
. It helps avoid issues like #7176 (comment) where tests assume they are being run from"${workspaceFolder}/Tests"
directory.Originally posted by @karrtikr in #7176 (comment)
The text was updated successfully, but these errors were encountered: