From f664cf4c9028ac851d467a5b2c28bf989850ea2a Mon Sep 17 00:00:00 2001 From: lotte Date: Thu, 2 Apr 2020 17:02:14 +0200 Subject: [PATCH] made timeout longer for e2e --- 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 09a7990a77..0d1daf1e06 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, 10000); + return browser.wait(notLoading, 60000); } }