diff --git a/core/src/test/java/de/otto/jlineup/browser/BrowserIntegrationTest.java b/core/src/test/java/de/otto/jlineup/browser/BrowserIntegrationTest.java index 083db050..406d159e 100644 --- a/core/src/test/java/de/otto/jlineup/browser/BrowserIntegrationTest.java +++ b/core/src/test/java/de/otto/jlineup/browser/BrowserIntegrationTest.java @@ -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(); } }