mirror of
https://github.com/google/nomulus.git
synced 2025-07-19 17:26:09 +02: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:
parent
d516bfb764
commit
d03201bea3
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue