mirror of
https://github.com/google/nomulus
synced 2026-01-07 22:15:30 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user