code lens gone and cannot run/debug functions via UI #2064
-
Checking configured tools....
go env I recently updated to Monterey 12.2.1 and noticed that the "run test | debug test" buttons disappeared. The Test Explorer seems to be having issues as well. Every time I click on a dropdown, the label disappears. Im also not able to use the debug/test Function at cursor command. I removed vscode and the supporting files and tried reinstalling with no luck. I can test/debug functions is via command line or by creating a launch configuration that takes a prompt. "configurations": [
{
"name": "Debug test",
"type": "go",
"request": "launch",
"mode": "test",
"program": "${fileDirname}",
"args": [
"-test.run",
"${input:testName}"
]
}
],
"inputs": [
{
"type": "promptString",
"id": "testName",
"description": "Enter Test Name",
"default": "TestName"
}
] But would like to get the UI working like it use to. Has anyone had this issue? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Can you try to reinstall the |
Beta Was this translation helpful? Give feedback.
Can you try to reinstall the
go-outline
tool and see if that helps?"Go: Install/Update Tools" -> select "go-outline".
After tool update is successful, "Developers: Reload WIndow" to start from clean state.