From 6b107d8a252d8db20e0d5a5a3431c22f0763cb26 Mon Sep 17 00:00:00 2001 From: Dario Piotrowicz Date: Fri, 4 Jul 2025 18:02:24 +0100 Subject: [PATCH] chore: pipe the webServer output for cloudflare playwright runs --- apps/site/playwright.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/site/playwright.config.ts b/apps/site/playwright.config.ts index f4e612c3d1507..523f40f644582 100644 --- a/apps/site/playwright.config.ts +++ b/apps/site/playwright.config.ts @@ -41,6 +41,7 @@ function getWebServerConfig(): Pick { if (process.env.PLAYWRIGHT_RUN_CLOUDFLARE_PREVIEW) { return { webServer: { + stdout: 'pipe', command: '../../node_modules/.bin/turbo cloudflare:preview', url: process.env.PLAYWRIGHT_BASE_URL || 'http://127.0.0.1:3000', timeout: 60_000 * 3,