From 321a0d553077756aa1d0b8647bcd53e5b9765d12 Mon Sep 17 00:00:00 2001 From: Val Alexander <68980965+BunsDev@users.noreply.github.com> Date: Mon, 4 May 2026 04:00:49 -0500 Subject: [PATCH] test(control-ui): skip responsive browser layout without chromium --- ui/src/ui/chat/chat-responsive.browser.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/src/ui/chat/chat-responsive.browser.test.ts b/ui/src/ui/chat/chat-responsive.browser.test.ts index 6afe363448b..88c96f7ee7f 100644 --- a/ui/src/ui/chat/chat-responsive.browser.test.ts +++ b/ui/src/ui/chat/chat-responsive.browser.test.ts @@ -13,6 +13,7 @@ const VIEWPORTS = [ [1440, 900], ] as const; const TOUCH_TARGET_MIN_PX = 43.5; +const describeBrowserLayout = existsSync(chromium.executablePath()) ? describe : describe.skip; let browser: Browser; @@ -228,7 +229,7 @@ afterAll(async () => { await browser.close(); }); -describe("chat responsive browser layout", () => { +describeBrowserLayout("chat responsive browser layout", () => { it.each([ [1120, 740], [1366, 900],