Browse Source

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

Jake Vossen 3 years ago
parent
commit
1ea4484867
1 changed files with 4 additions and 0 deletions
  1. 4 0
      pages/common/cargo-test.md

+ 4 - 0
pages/common/cargo-test.md

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