TIL: How to display Test Outputs in Rust

Sep 15, 2023 • Arne Vogel

Add -- --nocapture to the test command for prints in tests to display.

So the full command becomes cargo test -- --nocapture.