From b2afd7c064423018f0b662bb3c9f0e90d4b7037b Mon Sep 17 00:00:00 2001 From: Maurice McCabe Date: Wed, 6 Mar 2019 22:38:11 -0800 Subject: [PATCH] Increased timeout for entire test from default of 30 seconds to 120 seconds. (for slow running emulators in cloud) --- example/test_driver/main_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/test_driver/main_test.dart b/example/test_driver/main_test.dart index fa8141ad..eab24f9f 100644 --- a/example/test_driver/main_test.dart +++ b/example/test_driver/main_test.dart @@ -44,6 +44,6 @@ void main() { // increase timeout from 30 seconds for testing // on slow running emulators in cloud - }, timeout: Timeout(Duration(seconds: 60))); + }, timeout: Timeout(Duration(seconds: 120))); }); }