Skip to content

Commit

Permalink
Update integration_test.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
natsuk4ze committed Jul 6, 2023
1 parent 09917e1 commit 4cc9eb2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions example/integration_test/integration_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -60,18 +60,18 @@ 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.
/// For more info: https://github.com/flutter/flutter/wiki/Plugin-Tests
}, retry: 3);
});
}

0 comments on commit 4cc9eb2

Please sign in to comment.