From 97f9f3edec323205cd63abb79785bf4a7171d943 Mon Sep 17 00:00:00 2001 From: William Allen Date: Fri, 26 Jun 2026 09:25:33 -0400 Subject: [PATCH] Bump browser testing default timeout to 120 seconds Many of our browser tests have been flaky for the last few months. This PR aims to rule out simple load-induced timeouts as the cause. --- tests/BrowserTestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/BrowserTestCase.php b/tests/BrowserTestCase.php index c14fd5e9af..74811bff55 100644 --- a/tests/BrowserTestCase.php +++ b/tests/BrowserTestCase.php @@ -25,7 +25,7 @@ public function setUp(): void Dusk::selectorHtmlAttribute('data-test'); Browser::$baseUrl = 'http://website:8080'; - Browser::$waitSeconds = 20; + Browser::$waitSeconds = 120; } /**