made timeout longer for e2e

This commit is contained in:
lotte
2020-04-02 17:02:14 +02:00
parent 97953912c5
commit f664cf4c90

View File

@@ -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);
}
}