diff --git a/playwright.config.js b/playwright.config.js index 5e218cf..079353e 100644 --- a/playwright.config.js +++ b/playwright.config.js @@ -1,5 +1,5 @@ export default { - timeout: 5000, // Max execution time of any single test + timeout: process.env.CI ? undefined : 3000, // Max execution time of any single test expect: { timeout: 1000, // Max execution time of single expect() calls },