diff --git a/playwright.config.ts b/playwright.config.ts index 97b0db3..f1efcba 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -13,20 +13,20 @@ import { devices } from '@playwright/test' const config: PlaywrightTestConfig = { testDir: './ui-e2e-tests', /* Maximum time one test can run for. */ - timeout: 30 * 1000, + timeout: 40 * 1000, expect: { /** * Maximum time expect() should wait for the condition to be met. * For example in `await expect(locator).toHaveText();` */ - timeout: 5000, + timeout: 7000, }, /* Run tests in files in parallel */ fullyParallel: true, /* Fail the build on CI if you accidentally left test.only in the source code. */ forbidOnly: !!process.env.CI, /* Retry on CI only */ - retries: process.env.CI ? 2 : 0, + retries: process.env.CI ? 5 : 0, /* Opt out of parallel tests on CI. */ workers: process.env.CI ? 1 : undefined, /* Reporter to use. See https://playwright.dev/docs/test-reporters */