From 34bbd3820b32819ca93ca8e712d10ec68df99fc7 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 12 Jul 2026 22:44:43 -0400 Subject: [PATCH] test(ui): stabilize chat hover browser timeout --- ui/src/pages/chat/chat-responsive.browser.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/src/pages/chat/chat-responsive.browser.test.ts b/ui/src/pages/chat/chat-responsive.browser.test.ts index 120152d4f9c8..5d1e4850df25 100644 --- a/ui/src/pages/chat/chat-responsive.browser.test.ts +++ b/ui/src/pages/chat/chat-responsive.browser.test.ts @@ -595,7 +595,9 @@ describeBrowserLayout.concurrent("chat responsive browser layout", () => { it( "reveals message context on timestamp hover and keeps click-to-open", - { timeout: 20_000 }, + // This full-app case shares Chromium with concurrent layout pages; match + // the UI runner's cold-browser budget instead of imposing a flaky 20s cap. + { timeout: 60_000 }, async () => { if (!realChatServer) { throw new Error("Expected the Control UI server to be ready");