trycmd icon indicating copy to clipboard operation
trycmd copied to clipboard

Snapshot testing for a herd of CLI tests

Results 55 trycmd issues
Sort by recently updated
recently updated
newest added

The `snapbox::current_rs!()`, and friends, macros produce the wrong path to the source file when in a directory structure with `Cargo.toml` files in multiple path ancestors, such as a structure with...

Recently, I ran into a failure like this:[^1] ```rs fn main() { let actual = r#" before_tokens: "["let", "(", "_", ",", "ref_count"]","#; let expected = r#" before_tokens: "[..]","#; snapbox::assert_data_eq!(actual, expected);...

enhancement
A-snapbox
A-trycmd

Observed in Cargo: when a test fails due to a mismatch in the output, then in addition to providing the new output, snapbox will also show a diff from any...

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [schemars](https://graham.cool/schemars/) ([source](https://redirect.github.com/GREsau/schemars)) | dependencies | major | `0.8.21` -> `1.0.0` | --- ###...

Hello there! At Bitfinity we had this issue where we moved the tool we were testing and for literally months we didn't notice the tests were ignored, because our CI...