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.
This commit is contained in:
Ben McIlwain 2020-08-10 15:16:34 -04:00 committed by GitHub
parent d516bfb764
commit d03201bea3

View file

@ -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