Skip to content

Commit

Permalink
test(e2e): wait 20s vs 10s for root layout
Browse files Browse the repository at this point in the history
apparently it is very slow on CI
  • Loading branch information
mikehardy committed Apr 28, 2021
1 parent ef4759c commit 824bea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/e2e/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ beforeEach(async function beforeEach() {
afterEach(async function afterEach() {
await waitFor(element(by.id('welcome')).atIndex(0)) // the testID for the Root View in app.js
.toBeVisible()
.withTimeout(10000); // If app reloads, it takes some time to re-display
.withTimeout(20000); // If app reloads, it takes some time to re-display
});

after(async function () {
Expand Down

0 comments on commit 824bea5

Please sign in to comment.