BarredEwe / Prefire

🔥 A library based on SwiftUI Preview, for easy generation: Playbook view, Snapshot and Accessibility tests
Apache License 2.0
251 stars 16 forks source link

Fix getting setting for snapshots #19

Closed BarredEwe closed 11 months ago

BarredEwe commented 11 months ago

Short description 📝

Thanks to @markst for finding issue If you try to set precision or delay in ForEach, it won't work.

ForEach(0..2) { _ in
  Text("test")
    .snapshot(delay: 1.0, precision: 0.8)
}

Solution 📦

Removed the use of Mirror and added processing by extending the SnapshotTesting library