From 990472e02f80e3fe7b1878e29a296252f785e40f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pau=20Ferrer=20Oca=C3=B1a?= Date: Tue, 21 Jan 2020 12:43:51 +0100 Subject: [PATCH] MDL-67728 behat: Increase app start timeout --- behat_app.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/behat_app.php b/behat_app.php index 4996b2797..f82ce5d70 100644 --- a/behat_app.php +++ b/behat_app.php @@ -294,7 +294,7 @@ class behat_app extends behat_base { } } throw new DriverException('Moodle app not found in browser'); - }, false, 30); + }, false, 60); // Run the scripts to install Moodle 'pending' checks. $this->getSession()->executeScript( @@ -312,7 +312,7 @@ class behat_app extends behat_base { return 'mainpage'; } throw new DriverException('Moodle app login URL prompt not found'); - }, behat_base::get_extended_timeout(), 30); + }, behat_base::get_extended_timeout(), 60); // If it's the login page, we automatically fill in the URL and leave it on the user/pass // page. If it's the main page, we just leave it there.