From 9a0e4a89c4c3e84a6d3ee9bf1b7aaabcf67ecd0b Mon Sep 17 00:00:00 2001 From: Aaron Date: Sun, 28 Apr 2024 11:44:21 -0700 Subject: [PATCH] chore: pipe remix logs to playwright (#612) --- playwright.config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/playwright.config.ts b/playwright.config.ts index 89194329..eddccd67 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -76,6 +76,8 @@ const config: PlaywrightTestConfig = { command: 'pnpm --filter=./playground start', port: process.env.PORT ? Number(process.env.PORT) : 3000, reuseExistingServer: !process.env.CI, + stderr: 'pipe', + stdout: 'pipe', }, };