From 9733da67ae75c3a3855c7ae2510f4ee239af8c40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Omar=20L=C3=B3pez?= Date: Tue, 15 Feb 2022 11:14:57 -0700 Subject: [PATCH] Fixes/e2e (#1860) * E2E fixes * Ensures port 3000 for CI --- playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index cfea12f0dc..39caf0ee7a 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -24,7 +24,7 @@ const config: PlaywrightTestConfig = { globalSetup: require.resolve("./apps/web/playwright/lib/globalSetup"), outputDir: "./playwright/results", webServer: { - command: "yarn workspace @calcom/web start", + command: "yarn workspace @calcom/web start -p 3000", port: 3000, timeout: 60_000, reuseExistingServer: !process.env.CI,