From c26cf74aecfd18f309fe23479c7a3b2efba0da17 Mon Sep 17 00:00:00 2001 From: zomars Date: Thu, 29 Sep 2022 14:23:52 +0200 Subject: [PATCH] Revert "Increase timeouts (#4716)" This reverts commit 145fb09b7321c6cfbff0f6088ebe7b5120c60065. --- playwright.config.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/playwright.config.ts b/playwright.config.ts index 945cccf984..65d224700a 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -7,7 +7,7 @@ dotEnv.config({ path: ".env" }); const outputDir = path.join(__dirname, "test-results"); -const DEFAULT_NAVIGATION_TIMEOUT = 40000; +const DEFAULT_NAVIGATION_TIMEOUT = 15000; const headless = !!process.env.CI || !!process.env.PLAYWRIGHT_HEADLESS; @@ -56,7 +56,6 @@ const config: PlaywrightTestConfig = { name: "@calcom/web", testDir: "./apps/web/playwright", testMatch: /.*\.e2e\.tsx?/, - timeout: 120000, use: { ...devices["Desktop Chrome"], /** If navigation takes more than this, then something's wrong, let's fail fast. */