Merge pull request #641 from capickett/cargo_tests

Include a launch config for cargo tests
This commit is contained in:
David Tolnay 2021-01-02 11:33:58 -08:00 committed by GitHub
commit 958f875178
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

14
.vscode/launch.json vendored
View File

@ -12,6 +12,18 @@
"kind": "bin"
}
}
}
},
{
"name": "Debug cargo tests",
"type": "lldb",
"request": "launch",
"cargo": {
"args": ["test", "--no-run"],
"filter": {
"name": "test",
"kind": "test"
}
}
},
]
}