diff --git a/example/integration_test/integration_test.dart b/example/integration_test/integration_test.dart index ecd455cd..7a518755 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,7 +68,7 @@ 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.