m3_lightmeter/scripts/update_goldens.sh

7 lines
300 B
Bash
Raw Normal View History

defaults -currentHost write -g AppleFontSmoothing -int 0
goldens=$(find ./test -name "*_golden_test.dart" -print)
for f in $goldens; do
2025-07-09 16:10:17 +00:00
fvm flutter test "$f" --dart-define cameraStubImage=assets/camera_stub_image.jpg --update-goldens
done
defaults -currentHost write -g AppleFontSmoothing -int 3