From 35c70fcf2a55b39ad6e486f459c307ef9616953d Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Tue, 12 Sep 2023 12:40:43 +0200 Subject: [PATCH] Temporarily increased test timeout for Comments-UI refs https://github.com/TryGhost/Product/issues/3867 - this temporarily increases the timeout to avoid some flaky CI performance until the cause has been fixed --- apps/comments-ui/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/comments-ui/playwright.config.ts b/apps/comments-ui/playwright.config.ts index 67892a1b52..2ab14cce47 100644 --- a/apps/comments-ui/playwright.config.ts +++ b/apps/comments-ui/playwright.config.ts @@ -17,7 +17,7 @@ export default defineConfig({ workers: process.env.CI ? '100%' : undefined, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ reporter: 'html', - timeout: process.env.PLAYWRIGHT_SLOWMO ? 100000 : 10000, + timeout: process.env.PLAYWRIGHT_SLOWMO ? 100000 : 20000, expect: { timeout: process.env.PLAYWRIGHT_SLOWMO ? 100000 : 5000 },