diff --git a/integration_test/e2e_test.dart b/integration_test/e2e_test.dart index c60496e..37f6838 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, {required Future Function() screenshotCallback}) { +void testE2E(String description) { setUp(() async { SharedPreferences.setMockInitialValues({ /// Metering values @@ -76,7 +76,6 @@ void testE2E(String description, {required Future Function() screenshotCal 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); @@ -98,7 +97,6 @@ void testE2E(String description, {required Future Function() screenshotCal expectPickerTitle(mockFilms[0].name); expectPickerTitle('400'); await tester.takePhoto(); - await screenshotCallback(); await _expectMeteringState( tester, equipmentProfile: mockEquipmentProfiles[0], @@ -112,7 +110,6 @@ void testE2E(String description, {required Future Function() screenshotCal /// Add ND to shoot another scene await tester.openPickerAndSelect('2'); - await screenshotCallback(); await _expectMeteringStateAndMeasure( tester, equipmentProfile: mockEquipmentProfiles[0], @@ -127,7 +124,6 @@ void testE2E(String description, {required Future Function() screenshotCal /// Select another lens without ND await tester.openPickerAndSelect(mockEquipmentProfiles[1].name); await tester.openPickerAndSelect('None'); - await screenshotCallback(); await _expectMeteringStateAndMeasure( tester, equipmentProfile: mockEquipmentProfiles[1], @@ -142,7 +138,6 @@ void testE2E(String description, {required Future Function() screenshotCal /// 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 e7c6722..112e60e 100644 --- a/integration_test/run_all_tests.dart +++ b/integration_test/run_all_tests.dart @@ -9,10 +9,5 @@ void main() { testPurchases('Purchase & refund premium features'); testToggleLayoutFeatures('Toggle metering screen layout features'); - testE2E( - 'e2e', - screenshotCallback: () async { - await IntegrationTestWidgetsFlutterBinding.instance.takeScreenshot('screenshot_e2e'); - }, - ); + testE2E('e2e'); }