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 ({