Test runner launch

This commit is contained in:
mStar aka a person 2024-02-05 16:36:01 +01:00
parent 74053a26ae
commit fb947cc105

27
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,27 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'capybara-engine'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=capybara-engine"
],
"filter": {
"name": "capybara-engine",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}