From bdc2825861085643437b2693d2bd46f929c37506 Mon Sep 17 00:00:00 2001 From: lin onetwo Date: Sun, 25 Jan 2026 02:27:44 +0800 Subject: [PATCH] Update timeouts.ts --- features/supports/timeouts.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/features/supports/timeouts.ts b/features/supports/timeouts.ts index c428509d..d375d4d3 100644 --- a/features/supports/timeouts.ts +++ b/features/supports/timeouts.ts @@ -18,19 +18,19 @@ const isCI = Boolean(process.env.CI); /** * Timeout for Playwright waitForSelector and similar operations * These are internal timeouts for finding elements, not Cucumber step timeouts - * Local: 5s, CI: 10s + * Local: 5s, CI: 25s */ -export const PLAYWRIGHT_TIMEOUT = isCI ? 10000 : 5000; +export const PLAYWRIGHT_TIMEOUT = isCI ? 25000 : 5000; /** * Shorter timeout for operations that should be very fast - * Local: 3s, CI: 6s + * Local: 3s, CI: 15s */ -export const PLAYWRIGHT_SHORT_TIMEOUT = isCI ? 6000 : 3000; +export const PLAYWRIGHT_SHORT_TIMEOUT = isCI ? 15000 : 3000; /** * Timeout for waiting log markers * Internal wait should be shorter than step timeout to allow proper error reporting - * Local: 3s, CI: 6s + * Local: 3s, CI: 15s */ -export const LOG_MARKER_WAIT_TIMEOUT = isCI ? 6000 : 3000; +export const LOG_MARKER_WAIT_TIMEOUT = isCI ? 15000 : 3000;