Skip to content

Commit

Permalink
increasing test timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
tiholic committed Jan 12, 2021
1 parent bcf52ef commit 80dff88
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions test_integration/test_driver/tests_abstract.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,12 @@ void runTests({

// Connect to the Flutter driver before running any tests.
setUpAll(() async {
driver = await FlutterDriver.connect(printCommunication: true);
driver = await FlutterDriver.connect(
printCommunication: true,
timeout: const Duration(seconds: 60),
);
});

tearDownAll(() async {
if (driver != null) {
final _ = driver.close();
Expand Down

0 comments on commit 80dff88

Please sign in to comment.