Skip to content

Commit

Permalink
Set timeout for ios test
Browse files Browse the repository at this point in the history
  • Loading branch information
natsuk4ze committed Jul 5, 2023
1 parent 4656941 commit 07efad2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/integration_test/integration_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@ 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();
await tester.pumpAndSettle();
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.
Expand Down

0 comments on commit 07efad2

Please sign in to comment.