From 51dd1b1b2b787b2db740a2551cba44e2f10e879a Mon Sep 17 00:00:00 2001 From: lotte Date: Wed, 22 Apr 2020 16:07:22 +0200 Subject: [PATCH] changing timeout --- e2e/src/app.po.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/src/app.po.ts b/e2e/src/app.po.ts index 0d1daf1e06..8b43279d0f 100644 --- a/e2e/src/app.po.ts +++ b/e2e/src/app.po.ts @@ -18,6 +18,6 @@ export class ProtractorPage { const loading = element(by.css('.loader')) const EC = protractor.ExpectedConditions; const notLoading = EC.not(EC.presenceOf(loading)); - return browser.wait(notLoading, 60000); + return browser.wait(notLoading, 180000); } }