Skip to content

Commit

Permalink
[ACS-4922] folder rule e2e fail timeout (#3116)
Browse files Browse the repository at this point in the history
  • Loading branch information
akashrathod28 committed Apr 12, 2023
1 parent 294a10c commit 1ce80f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/run-e2e/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand Down
2 changes: 1 addition & 1 deletion e2e/playwright/shared/page-objects/pages/base.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
});
}
}
Expand Down

0 comments on commit 1ce80f3

Please sign in to comment.