From 5f0e408d2fd50820bec8d2d9620164ff44cfe141 Mon Sep 17 00:00:00 2001 From: Anik Dhabal Babu <81948346+anikdhabal@users.noreply.github.com> Date: Tue, 30 Dec 2025 06:17:02 +0530 Subject: [PATCH] fix: hide expected webServer errors in E2E tests to reduce noise (#26251) * fix: e2e failure in CI * fix --- playwright.config.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/playwright.config.ts b/playwright.config.ts index 95029ccee5..c08e00231e 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -25,6 +25,7 @@ const headless = !!process.env.CI || !!process.env.PLAYWRIGHT_HEADLESS; const IS_EMBED_TEST = process.argv.some((a) => a.startsWith("--project=@calcom/embed-core")); const IS_EMBED_REACT_TEST = process.argv.some((a) => a.startsWith("--project=@calcom/embed-react")); +// Suppress all webServer logs to reduce noise during E2E tests const webServer: PlaywrightTestConfig["webServer"] = [ { command: @@ -32,6 +33,8 @@ const webServer: PlaywrightTestConfig["webServer"] = [ port: 3000, timeout: 60_000, reuseExistingServer: !process.env.CI, + stdout: "ignore", + stderr: "ignore", }, ]; @@ -43,6 +46,8 @@ if (IS_EMBED_TEST) { port: 3100, timeout: 60_000, reuseExistingServer: !process.env.CI, + stdout: "ignore", + stderr: "ignore", }); } @@ -54,6 +59,8 @@ if (IS_EMBED_REACT_TEST) { port: 3101, timeout: 60_000, reuseExistingServer: !process.env.CI, + stdout: "ignore", + stderr: "ignore", }); }