diff --git a/ghost/core/playwright.config.js b/ghost/core/playwright.config.js index f1bd323c61..618f4bc16b 100644 --- a/ghost/core/playwright.config.js +++ b/ghost/core/playwright.config.js @@ -6,7 +6,8 @@ const config = { use: { // Use a single browser since we can't simultaneously test multiple browsers browserName: 'chromium', - baseURL: process.env.TEST_URL ?? 'http://localhost:2368' + baseURL: process.env.TEST_URL ?? 'http://localhost:2368', + headless: false } };