diff --git a/playwright.config.ts b/playwright.config.ts index e922c7ad..5bf774e3 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -14,15 +14,16 @@ export default defineConfig({ fullyParallel: false, /* Increase locator timeout past default 5s */ - // expect: { - // timeout: 30000, - // }, + expect: { + timeout: 10 * 1500, + }, /* Fail the build on CI if you accidentally left test.only in the source code. */ forbidOnly: !!process.env.CI, reporter: "html", - // timeout: 30000, /* Retry on CI only */ retries: process.env.CI ? 2 : 0, + /* Increase the default timeout to 10 seconds. */ + timeout: 15000, /* Opt out of parallel tests on CI. */ workers: process.env.CI ? 1 : 6,