We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ff9de9 commit 4fca9e7Copy full SHA for 4fca9e7
1 file changed
examples_utils/src/lib.rs
@@ -42,7 +42,10 @@ pub mod internal {
42
State: eframe::App,
43
{
44
let output_path = PathBuf::from(manifest_dir);
45
- let options = SnapshotOptions::new().threshold(2.0).output_path(output_path);
+ let options = SnapshotOptions::new()
46
+ .threshold(2.0)
47
+ .failed_pixel_count_threshold(5)
48
+ .output_path(output_path);
49
50
// Generate main screenshot
51
let mut harness = Harness::builder()
0 commit comments