diff --git a/.github/workflows/pull_request-ci.yml b/.github/workflows/pull_request-ci.yml index 9b3401e..df8e1a1 100644 --- a/.github/workflows/pull_request-ci.yml +++ b/.github/workflows/pull_request-ci.yml @@ -22,7 +22,7 @@ jobs: - uses: subosito/flutter-action@v2 with: channel: 'stable' # 'dev', 'alpha', default to: 'stable' - flutter-version: '3.24.3' # you can also specify exact version of flutter + #flutter-version: '3.24.3' # you can also specify exact version of flutter # Check Flutter version - name: Check Flutter version diff --git a/test/core/app_route_test.dart b/test/core/app_route_test.dart index 57a30bf..f1e69b5 100644 --- a/test/core/app_route_test.dart +++ b/test/core/app_route_test.dart @@ -77,8 +77,10 @@ void main() { // Navigate to dashboard await tester.pumpAndSettle(); + await tester.pumpAndSettle(); + await tester.pumpAndSettle(); - // expect(find.byType(MainPage), findsOneWidget); + expect(find.byType(MainPage), findsOneWidget); expect(find.byType(DashboardPage), findsOneWidget); }); }