From 80dff88a4894fb99e30a044691f1cd1f635c5fd0 Mon Sep 17 00:00:00 2001 From: Rohit Reddy Abbadi Date: Tue, 24 Nov 2020 21:43:06 +0530 Subject: [PATCH] increasing test timeout --- test_integration/test_driver/tests_abstract.dart | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/test_integration/test_driver/tests_abstract.dart b/test_integration/test_driver/tests_abstract.dart index 3bb2887a8..d737552dd 100644 --- a/test_integration/test_driver/tests_abstract.dart +++ b/test_integration/test_driver/tests_abstract.dart @@ -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();