From d03201bea3cd07c075e707bdec146bce43887d73 Mon Sep 17 00:00:00 2001 From: Ben McIlwain Date: Mon, 10 Aug 2020 15:16:34 -0400 Subject: [PATCH] Double the timeout length for WebDriver screenshot tests (#758) * Double the timeout length for WebDriver screenshot tests My theory is that this timeout is being applied to all retries of a failing test rather than each one, and thus flaky screenshot tests aren't being given sufficient time to complete any attempt past the first. --- .../test/java/google/registry/webdriver/WebDriverTestCase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/test/java/google/registry/webdriver/WebDriverTestCase.java b/core/src/test/java/google/registry/webdriver/WebDriverTestCase.java index 187a2cab3..6b5a688c2 100644 --- a/core/src/test/java/google/registry/webdriver/WebDriverTestCase.java +++ b/core/src/test/java/google/registry/webdriver/WebDriverTestCase.java @@ -18,7 +18,7 @@ import org.junit.jupiter.api.Timeout; import org.junit.jupiter.api.extension.RegisterExtension; /** Base class for tests that needs a {@link WebDriverPlusScreenDifferExtension}. */ -@Timeout(60) +@Timeout(120) class WebDriverTestCase { @RegisterExtension