From 5e8385607a3de5691962ec544554efd385e714e2 Mon Sep 17 00:00:00 2001 From: sumit_chaturvedi Date: Wed, 25 Jun 2025 14:27:29 +0530 Subject: [PATCH] chore(e2e): updated page load timing --- ui/playwright.config.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ui/playwright.config.ts b/ui/playwright.config.ts index 4bcc8f5620..67cfe5ac55 100644 --- a/ui/playwright.config.ts +++ b/ui/playwright.config.ts @@ -61,9 +61,9 @@ export default defineConfig({ webServer: isLocal ? undefined // Skip web server in local runs : { - command: "npm run dev", - url: "http://localhost:3000", - reuseExistingServer: true, - timeout: 300 * 1000, // 5 minute - }, + command: "npm run dev", + url: "http://localhost:3000", + reuseExistingServer: true, + timeout: 400 * 1000, // 5 minute + }, });