diff --git a/integration_test/e2e_test.dart b/integration_test/e2e_test.dart index 37f6838..c60496e 100644 --- a/integration_test/e2e_test.dart +++ b/integration_test/e2e_test.dart @@ -27,7 +27,7 @@ import 'mocks/paid_features_mock.dart'; import 'utils/expectations.dart'; @isTest -void testE2E(String description) { +void testE2E(String description, {required Future Function() screenshotCallback}) { setUp(() async { SharedPreferences.setMockInitialValues({ /// Metering values @@ -76,6 +76,7 @@ void testE2E(String description) { await tester.pumpAndSettle(); await tester.enterProfileName(mockEquipmentProfiles[1].name); await tester.setApertureValues(mockEquipmentProfiles[1].apertureValues); + await screenshotCallback(); await tester.setZoomValue(mockEquipmentProfiles[1].lensZoom); expect(find.text('x5.02'), findsOneWidget); expect(find.text('f/3.5 - f/22'), findsOneWidget); @@ -97,6 +98,7 @@ void testE2E(String description) { expectPickerTitle(mockFilms[0].name); expectPickerTitle('400'); await tester.takePhoto(); + await screenshotCallback(); await _expectMeteringState( tester, equipmentProfile: mockEquipmentProfiles[0], @@ -110,6 +112,7 @@ void testE2E(String description) { /// Add ND to shoot another scene await tester.openPickerAndSelect('2'); + await screenshotCallback(); await _expectMeteringStateAndMeasure( tester, equipmentProfile: mockEquipmentProfiles[0], @@ -124,6 +127,7 @@ void testE2E(String description) { /// Select another lens without ND await tester.openPickerAndSelect(mockEquipmentProfiles[1].name); await tester.openPickerAndSelect('None'); + await screenshotCallback(); await _expectMeteringStateAndMeasure( tester, equipmentProfile: mockEquipmentProfiles[1], @@ -138,6 +142,7 @@ void testE2E(String description) { /// Set another film and another ISO await tester.openPickerAndSelect('200'); await tester.openPickerAndSelect(mockFilms[1].name); + await screenshotCallback(); await _expectMeteringStateAndMeasure( tester, equipmentProfile: mockEquipmentProfiles[1], diff --git a/integration_test/run_all_tests.dart b/integration_test/run_all_tests.dart index 112e60e..e7c6722 100644 --- a/integration_test/run_all_tests.dart +++ b/integration_test/run_all_tests.dart @@ -9,5 +9,10 @@ void main() { testPurchases('Purchase & refund premium features'); testToggleLayoutFeatures('Toggle metering screen layout features'); - testE2E('e2e'); + testE2E( + 'e2e', + screenshotCallback: () async { + await IntegrationTestWidgetsFlutterBinding.instance.takeScreenshot('screenshot_e2e'); + }, + ); }