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 4d92ba4b8e
commit 082086bde9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,7 +18,7 @@ import org.junit.jupiter.api.Timeout;
import org.junit.jupiter.api.extension.RegisterExtension; import org.junit.jupiter.api.extension.RegisterExtension;
/** Base class for tests that needs a {@link WebDriverPlusScreenDifferExtension}. */ /** Base class for tests that needs a {@link WebDriverPlusScreenDifferExtension}. */
@Timeout(60) @Timeout(120)
class WebDriverTestCase { class WebDriverTestCase {
@RegisterExtension @RegisterExtension