chore: add vscode debug target for specific itest

This commit is contained in:
Jonathan Harvey-Buschel 2024-08-23 16:52:30 -04:00
parent 84a20ff4cd
commit 80687e0b80
No known key found for this signature in database
GPG key ID: D55307DC71F37212

16
.vscode/launch.json vendored
View file

@ -4,6 +4,22 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug itest",
"type": "go",
"request": "launch",
"mode": "exec",
"preLaunchTask": "reset before itest",
"program": "itest/itest.test",
"args": [
"-test.v",
"-test.run=TestLightningTerminal/test_custom_channels",
"-logoutput",
"-logdir=${workspaceFolder}/itest/.logs",
"-litdexec=${workspaceFolder}/itest/litd-itest",
"-btcdexec=${workspaceFolder}/itest/btcd-itest",
]
},
{
"name": "Debug Tests",
"type": "node",