Skip to content

Commit

Permalink
Adjust Selenium example timeouts for Australian internet
Browse files Browse the repository at this point in the history
  • Loading branch information
japgolly committed Sep 27, 2018
1 parent db0c4be commit 537f5b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -43,7 +43,7 @@ object SeleniumExample extends TestSuite {
.test(observer)
.stateless
.withRef(driver)
.withRetryPolicy(Retry.Policy.fixedIntervalWithTimeout(200 millis, 12 seconds))
.withRetryPolicy(Retry.Policy.fixedIntervalWithTimeout(200 millis, 60 seconds))
.run()
driver.quit()
report.assert()
Expand Down
Expand Up @@ -63,7 +63,7 @@ object SeleniumExample2 extends TestSuite {
)
.test(observer)
.stateless
.withRetryPolicy(Retry.Policy.fixedIntervalWithTimeout(200 millis, 2 seconds))
.withRetryPolicy(Retry.Policy.fixedIntervalWithTimeout(200 millis, 20 seconds))

def testInParallel() = {
implicit val ec = ExecutionContext.fromExecutorService(Executors.newFixedThreadPool(4))
Expand Down

0 comments on commit 537f5b6

Please sign in to comment.