diff --git a/.github/actions/run-e2e/action.yml b/.github/actions/run-e2e/action.yml index 4a2d0ba23..ba96bb3e0 100644 --- a/.github/actions/run-e2e/action.yml +++ b/.github/actions/run-e2e/action.yml @@ -43,7 +43,7 @@ runs: if [ ${{ inputs.test-runner }} == "playwright" ]; then echo "Running playwright tests with options ${{ inputs.options }}" - sleep 60 + sleep 90 npx playwright test --config ${{ inputs.options }} else echo "Running protractor tests with options ${{ inputs.options }}" diff --git a/e2e/playwright/shared/page-objects/pages/base.page.ts b/e2e/playwright/shared/page-objects/pages/base.page.ts index 73f97a423..38e30ae18 100644 --- a/e2e/playwright/shared/page-objects/pages/base.page.ts +++ b/e2e/playwright/shared/page-objects/pages/base.page.ts @@ -62,7 +62,7 @@ export abstract class BasePage extends PlaywrightBase { } else { await this.page.goto(`./#/${this.pageUrl}${actualOptions.query}`, { waitUntil: actualOptions.waitUntil, - timeout: 10000 + timeout: 60000 }); } }