1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 08:53:39 +02:00

cargo-test: add --nocapture example (#7098)

This commit is contained in:
Jake Vossen 2021-10-19 08:47:52 -06:00 committed by GitHub
parent 70a1e161de
commit 1ea4484867
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,3 +26,7 @@
- Run tests for a package:
`cargo test --package {{package}}`
- Run tests without hiding output from test executions:
`cargo test -- --nocapture`