brain/src/dev/rust/testing.md

287 B

Testing

Cargo test and println!

To see stdout when using cargo run (kudos CobaltVelvet)

cargo test -- --nocapture

Run all the tests, even if one of them fail

cargo test -- --no-fail-fast

Cleanup test cache

go clean -testcache