diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 1764e81..93bd463 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: check: name: Full Project Check runs-on: self-hosted - timeout-minutes: 20 + timeout-minutes: 30 steps: - uses: actions/checkout@v4 diff --git a/integration_test/app_e2e_test.dart b/integration_test/app_e2e_test.dart index 99cfd7c..b2d7444 100644 --- a/integration_test/app_e2e_test.dart +++ b/integration_test/app_e2e_test.dart @@ -155,7 +155,7 @@ void main() { accountConnectionStatusProvider.overrideWith((ref, _) async {}), ], ); - await pumpUntil(tester, find.text('No accounts yet.')); + await pumpUntil(tester, find.text('Welcome to SharedInbox')); _log('app settled'); // ── Add account ──────────────────────────────────────────────────────── diff --git a/stalwart-dev/integration_ui_test.sh b/stalwart-dev/integration_ui_test.sh index f226108..bdc5114 100755 --- a/stalwart-dev/integration_ui_test.sh +++ b/stalwart-dev/integration_ui_test.sh @@ -139,7 +139,7 @@ done _e2e_exit=0 for _attempt in 1 2; do ts "E2E attempt $_attempt (DISPLAY=$DISPLAY)" - timeout 240 fvm flutter test integration_test/ -d linux + timeout 360 fvm flutter test integration_test/ -d linux _e2e_exit=$? [ $_e2e_exit -eq 0 ] && break if [ $_attempt -lt 2 ]; then