From 337e71dce2138bb81bf0db62134e6c3702ad4c28 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 1 Feb 2026 05:00:26 +0000 Subject: [PATCH] [automated] Apply ESLint and Oxfmt fixes --- .../tests/propertiesPanel/propertiesPanel.spec.ts | 12 +++--------- .../propertiesPanel/propertiesPanelBasic.spec.ts | 4 +--- .../propertiesPanel/propertiesPanelSearch.spec.ts | 4 +--- 3 files changed, 5 insertions(+), 15 deletions(-) diff --git a/browser_tests/tests/propertiesPanel/propertiesPanel.spec.ts b/browser_tests/tests/propertiesPanel/propertiesPanel.spec.ts index 39e645f58..cc69a7bc1 100644 --- a/browser_tests/tests/propertiesPanel/propertiesPanel.spec.ts +++ b/browser_tests/tests/propertiesPanel/propertiesPanel.spec.ts @@ -14,20 +14,14 @@ test.describe('Properties panel', () => { await expect(propertiesPanel.panelTitle).toContainText('3 items selected') await expect(propertiesPanel.root.getByText('KSampler')).toHaveCount(1) - await expect( - propertiesPanel.root.getByText('VAE Decode') - ).toHaveCount(2) + await expect(propertiesPanel.root.getByText('VAE Decode')).toHaveCount(2) await propertiesPanel.searchBox.fill('seed') await expect(propertiesPanel.root.getByText('KSampler')).toHaveCount(1) - await expect( - propertiesPanel.root.getByText('VAE Decode') - ).toHaveCount(0) + await expect(propertiesPanel.root.getByText('VAE Decode')).toHaveCount(0) await propertiesPanel.searchBox.fill('') await expect(propertiesPanel.root.getByText('KSampler')).toHaveCount(1) - await expect( - propertiesPanel.root.getByText('VAE Decode') - ).toHaveCount(2) + await expect(propertiesPanel.root.getByText('VAE Decode')).toHaveCount(2) }) }) diff --git a/browser_tests/tests/propertiesPanel/propertiesPanelBasic.spec.ts b/browser_tests/tests/propertiesPanel/propertiesPanelBasic.spec.ts index 6b1390cc1..57790aff0 100644 --- a/browser_tests/tests/propertiesPanel/propertiesPanelBasic.spec.ts +++ b/browser_tests/tests/propertiesPanel/propertiesPanelBasic.spec.ts @@ -145,9 +145,7 @@ test.describe('Properties panel basic functionality', { tag: ['@ui'] }, () => { await comfyPage.selectNodes(['KSampler', 'VAE Decode']) await expect(propertiesPanel.root.getByText('KSampler')).toBeVisible() - await expect( - propertiesPanel.root.getByText('VAE Decode') - ).toBeVisible() + await expect(propertiesPanel.root.getByText('VAE Decode')).toBeVisible() }) }) }) diff --git a/browser_tests/tests/propertiesPanel/propertiesPanelSearch.spec.ts b/browser_tests/tests/propertiesPanel/propertiesPanelSearch.spec.ts index bf076d461..a7a3f9ea2 100644 --- a/browser_tests/tests/propertiesPanel/propertiesPanelSearch.spec.ts +++ b/browser_tests/tests/propertiesPanel/propertiesPanelSearch.spec.ts @@ -31,9 +31,7 @@ test.describe('Properties panel search functionality', { tag: ['@ui'] }, () => { await propertiesPanel.searchBox.fill('') await expect(propertiesPanel.root.getByText('KSampler')).toBeVisible() - await expect( - propertiesPanel.root.getByText('VAE Decode') - ).toBeVisible() + await expect(propertiesPanel.root.getByText('VAE Decode')).toBeVisible() }) test('shows no results message when search matches nothing', async ({