Skip to content

Commit

Permalink
fix(page-po): increase timeout for automated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mdasberg committed Nov 2, 2018
1 parent e6e04d4 commit 5490b89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/pos/page.po.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down

0 comments on commit 5490b89

Please sign in to comment.