This commit is contained in:
Thomas Güttler
2026-04-25 07:12:43 +02:00
parent 518eb5ccc8
commit 7dc6b8959d
2 changed files with 5 additions and 1 deletions
+3
View File
@@ -11,6 +11,9 @@ dependencies:
flutter:
sdk: flutter
# Not used directly, but required to silence Flutter's "missing CupertinoIcons font" build warning.
cupertino_icons: ^1.0.8
enough_mail: ^2.1.7
http: ^1.2.0
@@ -227,7 +227,8 @@ void main() {
// 1. IDLE connects
await firstIdleConnected.future.timeout(
const Duration(seconds: 5),
onTimeout: () => fail('IDLE did not connect within 5s; error: $connectError'),
onTimeout: () =>
fail('IDLE did not connect within 5s; error: $connectError'),
);
expect(connectError, isNull, reason: 'IMAP connect should succeed');