From 09917e1667d4d4984a7561613e4b633b4c6efb42 Mon Sep 17 00:00:00 2001 From: yuoohama Date: Thu, 6 Jul 2023 16:41:21 +0900 Subject: [PATCH 1/2] Update ci.yml --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 07becf5d..ae51d432 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -130,6 +130,7 @@ jobs: # More info on https://github.com/ReactiveCircus/android-emulator-runner - name: Run integration tests + timeout-minutes: 60 uses: reactivecircus/android-emulator-runner@v2 with: api-level: ${{ matrix.api-level }} From 4cc9eb2689a19f7fc974d820b3d1ae4e3b982016 Mon Sep 17 00:00:00 2001 From: yuoohama Date: Thu, 6 Jul 2023 16:41:24 +0900 Subject: [PATCH 2/2] Update integration_test.dart --- example/integration_test/integration_test.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/example/integration_test/integration_test.dart b/example/integration_test/integration_test.dart index d984e581..ecd455cd 100644 --- a/example/integration_test/integration_test.dart +++ b/example/integration_test/integration_test.dart @@ -60,7 +60,7 @@ void main() { final button = find.byIcon(Icons.question_mark); await tester.tap(button); expect(tester.takeException(), isNull); - }, timeout: const Timeout(Duration(minutes: 20))); + }); testWidgets('open()', (tester) async { app.main(); @@ -68,10 +68,10 @@ void main() { final button = find.byIcon(Icons.open_in_new); await tester.tap(button); expect(tester.takeException(), isNull); - }, timeout: const Timeout(Duration(minutes: 20))); + }); /// Other functions take longer to implement /// because of the possibility of interacting with native dialogs. /// For more info: https://github.com/flutter/flutter/wiki/Plugin-Tests - }, retry: 3); + }); }