From d23df8addd96dac8a2d890ec341267cf878694c1 Mon Sep 17 00:00:00 2001 From: Lucas Clemente Date: Wed, 17 Aug 2016 11:41:44 +0200 Subject: [PATCH] increase docker boot timeout --- integrationtests/integrationtests_suite_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrationtests/integrationtests_suite_test.go b/integrationtests/integrationtests_suite_test.go index d5ce0d91..7dab776a 100644 --- a/integrationtests/integrationtests_suite_test.go +++ b/integrationtests/integrationtests_suite_test.go @@ -169,7 +169,7 @@ func setupSelenium() { ) docker, err = gexec.Start(dockerCmd, GinkgoWriter, GinkgoWriter) Expect(err).NotTo(HaveOccurred()) - Eventually(docker.Out, 5).Should(gbytes.Say("Selenium Server is up and running")) + Eventually(docker.Out, 10).Should(gbytes.Say("Selenium Server is up and running")) } func stopSelenium() {