Add a VSCode test configuration for cargo test --all.

This commit is contained in:
Richard Newman 2017-03-13 00:39:25 -07:00
parent fddc57d548
commit dc6a7a4128

10
.vscode/settings.json vendored
View file

@ -15,5 +15,13 @@
".sw*": true,
"target": true, // Top-level build output.
"*/target": true // Sub-crate build output.
}
},
"rust.customTestConfigurations": [
{
"title": "All Crates",
"args": [
"--all"
]
}
]
}