mirror of
https://github.com/google/nomulus.git
synced 2025-07-20 17:56:08 +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
4d92ba4b8e
commit
082086bde9
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;
|
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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue