Add debug option for Golang tests in vscode (#61983)

This commit is contained in:
Andres Martinez Gotor 2023-01-24 14:44:44 +01:00 committed by GitHub
parent 88347caf5f
commit d54cda62a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

8
.vscode/launch.json vendored
View File

@ -27,6 +27,14 @@
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"port": 9229
},
{
"name": "Debug Go test",
"type": "go",
"request": "launch",
"mode": "test",
"program": "${workspaceFolder}/${relativeFileDirname}",
"showLog": true
}
]
}