Increase WelcomePageSuite timeout

This commit is contained in:
Lee moon soo 2017-01-20 13:12:09 -08:00
parent 28a8be4683
commit 21e6840537

View file

@ -28,7 +28,7 @@ import AbstractFunctionalSuite.SERVER_ADDRESS
class WelcomePageSuite(implicit driver: WebDriver) extends FunSuite with WebBrowser {
test("Welcome sign is correct") {
eventually (timeout(Span(20, Seconds))) {
eventually (timeout(Span(180, Seconds))) {
go to SERVER_ADDRESS
assert(find("welcome").isDefined)
}