From 5490b8920788ceced7d988da6d891331d467cc9e Mon Sep 17 00:00:00 2001 From: Mischa Dasberg Date: Fri, 2 Nov 2018 10:02:33 +0100 Subject: [PATCH] fix(page-po): increase timeout for automated tests --- test/pos/page.po.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/pos/page.po.ts b/test/pos/page.po.ts index 891ce28..e20bea0 100644 --- a/test/pos/page.po.ts +++ b/test/pos/page.po.ts @@ -25,7 +25,7 @@ export class PagePO { await browser.waitUntil(async () => { const header = await browser.getText('h1'); return header.indexOf('ng-apimock test example app') > -1; - }, 5000); + }, 10000); } }