Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 282 Bytes

NOTES.md

File metadata and controls

12 lines (9 loc) · 282 Bytes

Notes

While developing use this to see debug statements in tests

RUST_LOG=meowth=debug cargo watch

# for individual tests
RUST_LOG=meowth=debug cargo watch "test test_mut_var"

# with backtrace
RUST_LOG=meowth=debug RUST_BACKTRACE=1 cargo watch "test test_while_loop"