From 54597f786e8e9942d632030ff5bf807132b248f6 Mon Sep 17 00:00:00 2001 From: bymyself Date: Fri, 7 Nov 2025 19:35:05 -0800 Subject: [PATCH] fix: import comfyExpect from ComfyPage not comfyPageFixture --- browser_tests/tests/nodeHelp.spec.ts | 6 ++---- browser_tests/tests/nodeSearchBox.spec.ts | 6 ++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/browser_tests/tests/nodeHelp.spec.ts b/browser_tests/tests/nodeHelp.spec.ts index 4d092336f..018a17dc2 100644 --- a/browser_tests/tests/nodeHelp.spec.ts +++ b/browser_tests/tests/nodeHelp.spec.ts @@ -1,7 +1,5 @@ -import { - comfyExpect as expect, - comfyPageFixture as test -} from '../fixtures/comfyPageFixture' +import { comfyPageFixture as test } from '../fixtures/comfyPageFixture' +import { comfyExpect as expect } from '../fixtures/ComfyPage' // TODO: there might be a better solution for this // Helper function to pan canvas and select node diff --git a/browser_tests/tests/nodeSearchBox.spec.ts b/browser_tests/tests/nodeSearchBox.spec.ts index 97b4d92fe..9564c06ed 100644 --- a/browser_tests/tests/nodeSearchBox.spec.ts +++ b/browser_tests/tests/nodeSearchBox.spec.ts @@ -1,7 +1,5 @@ -import { - comfyExpect as expect, - comfyPageFixture as test -} from '../fixtures/comfyPageFixture' +import { comfyPageFixture as test } from '../fixtures/comfyPageFixture' +import { comfyExpect as expect } from '../fixtures/ComfyPage' test.beforeEach(async ({ comfyPage }) => { await comfyPage.setSetting('Comfy.UseNewMenu', 'Disabled')