Skip to content

Commit

Permalink
Increase page load timeout to 30 seconds as a test
Browse files Browse the repository at this point in the history
  • Loading branch information
MediaMarco committed Dec 22, 2023
1 parent 786203c commit b1d366f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ private JobConfig localTestConfig(String endpoint, Browser.Type browser, boolean
}

private JobConfig localTestConfig(String endpoint, Browser.Type browser, boolean checkForErrors, UrlConfig urlConfig) {
return JobConfig.jobConfigBuilder().withCheckForErrorsInLog(checkForErrors).withUrls(ImmutableMap.of("http://localhost:" + port + "/" + endpoint, urlConfig)).withBrowser(browser).build().insertDefaults();
return JobConfig.jobConfigBuilder().withPageLoadTimeout(30).withCheckForErrorsInLog(checkForErrors).withUrls(ImmutableMap.of("http://localhost:" + port + "/" + endpoint, urlConfig)).withBrowser(browser).build().insertDefaults();
}

}

0 comments on commit b1d366f

Please sign in to comment.