diff --git a/tests/playwright/pages/Base.ts b/tests/playwright/pages/Base.ts index d16253fcb3..6ed34caf2d 100644 --- a/tests/playwright/pages/Base.ts +++ b/tests/playwright/pages/Base.ts @@ -46,7 +46,7 @@ export default abstract class BasePage { ); }, { - timeout: 60000, + timeout: 120000, } ); diff --git a/tests/playwright/playwright.config.ts b/tests/playwright/playwright.config.ts index de0d40829e..41d51b7297 100644 --- a/tests/playwright/playwright.config.ts +++ b/tests/playwright/playwright.config.ts @@ -34,7 +34,7 @@ export default defineConfig({ /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ use: { /* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */ - actionTimeout: 10000, + actionTimeout: 60000, /* Base URL to use in actions like `await page.goto('/')`. */ baseURL: 'http://localhost:3000',