diff --git a/.github/workflows/test-integration.yaml b/.github/workflows/test-integration.yaml index 78f321af2..b46db6b52 100644 --- a/.github/workflows/test-integration.yaml +++ b/.github/workflows/test-integration.yaml @@ -10,7 +10,6 @@ jobs: strategy: matrix: api-level: [29] - target: [playstore] steps: - uses: actions/checkout@v3 - uses: actions/setup-java@v2 @@ -27,7 +26,6 @@ jobs: - name: Run Flutter Driver tests uses: reactivecircus/android-emulator-runner@v2 with: - target: ${{ matrix.target }} api-level: ${{ matrix.api-level }} arch: x86_64 profile: Nexus 6 diff --git a/integration_test/views_test.dart b/integration_test/views_test.dart index 5b1df1962..f1bee958c 100644 --- a/integration_test/views_test.dart +++ b/integration_test/views_test.dart @@ -84,7 +84,7 @@ Future _popUntilMainView(WidgetTester tester) async { } Future _licensesViewTest(WidgetTester tester) async { - await pumpUntilFindNWidgets(tester, find.byIcon(Icons.info_outline), 1, const Duration(seconds: 10)); + await pumpUntilFindNWidgets(tester, find.byIcon(Icons.info_outline), 1, const Duration(seconds: 20)); await tester.tap(find.byIcon(Icons.info_outline)); await tester.pumpAndSettle(); expect(find.text(ApplicationCustomization.defaultCustomization.appName), findsOneWidget);