From 39ed1d762fce666e07ecce97ef04b37a686eea8e Mon Sep 17 00:00:00 2001 From: bymyself Date: Sat, 25 Oct 2025 19:10:16 -0700 Subject: [PATCH] [don't port to main] fix: Set UseNewMenu default to Disabled to match main rh-test had UseNewMenu='Top' by default, showing workflow tabs in all tests. main has UseNewMenu='Disabled' by default, hiding workflow tabs. Since we pulled snapshots from main, tests were failing due to UI mismatch. Changing rh-test default to match main fixes snapshot comparisons. --- browser_tests/fixtures/ComfyPage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser_tests/fixtures/ComfyPage.ts b/browser_tests/fixtures/ComfyPage.ts index 1c145a308..eb488738d 100644 --- a/browser_tests/fixtures/ComfyPage.ts +++ b/browser_tests/fixtures/ComfyPage.ts @@ -1667,7 +1667,7 @@ export const comfyPageFixture = base.extend<{ try { await comfyPage.setupSettings({ - 'Comfy.UseNewMenu': 'Top', + 'Comfy.UseNewMenu': 'Disabled', // Hide canvas menu/info/selection toolbox by default. 'Comfy.Graph.CanvasInfo': false, 'Comfy.Graph.CanvasMenu': false,