m3_lightmeter/update_goldens.sh

7 lines
296 B
Bash
Raw Permalink Normal View History

2024-04-12 08:39:09 +00:00
defaults -currentHost write -g AppleFontSmoothing -int 0
goldens=$(find ./test -name "*_golden_test.dart" -print)
for f in $goldens; do
flutter test "$f" --dart-define cameraStubImage=assets/camera_stub_image.jpg --update-goldens
done
defaults -currentHost write -g AppleFontSmoothing -int 3