Debug tests

This commit is contained in:
Rick Weber
2021-11-15 10:37:04 -08:00
parent 7c28484f1d
commit d917343573

18
.vscode/launch.json vendored
View File

@@ -18,6 +18,24 @@
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug assumption tests in library 'seal'",
"cargo": {
"args": [
"test",
"--no-run",
"--package=seal"
],
"filter": {
"name": "assumptions",
"kind": "test"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}