Skip to content

Commit

Permalink
tooling: vscode allow PoS debug target
Browse files Browse the repository at this point in the history
  • Loading branch information
brentstone committed Feb 3, 2023
1 parent c5d77bb commit 337d50a
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,25 @@
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'namada_proof_of_stake'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=namada_proof_of_stake"
],
"filter": {
"name": "namada_proof_of_stake",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
}

0 comments on commit 337d50a

Please sign in to comment.