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", }); }