[automated] Apply ESLint and Oxfmt fixes

This commit is contained in:
GitHub Action
2026-03-08 04:43:02 +00:00
parent 46aefdf441
commit 82a45b413b

View File

@@ -81,36 +81,31 @@ test.describe('Node Output Preservation', { tag: ['@widget', '@node'] }, () => {
})
// TODO(#8143): Re-enable after image preview sync is working in CI
test.fixme(
'Multiple LoadImage nodes on different tabs preserve independently',
async ({ comfyPage }) => {
// Tab 1: Load image on a LoadImage node
await loadImageOnNode(comfyPage)
const tab1Preview = comfyPage.page.locator('.image-preview img')
await expect(tab1Preview).toBeVisible()
test.fixme('Multiple LoadImage nodes on different tabs preserve independently', async ({
comfyPage
}) => {
// Tab 1: Load image on a LoadImage node
await loadImageOnNode(comfyPage)
const tab1Preview = comfyPage.page.locator('.image-preview img')
await expect(tab1Preview).toBeVisible()
// Create Tab 2 and load a different workflow with LoadImage
await comfyPage.menu.topbar.triggerTopbarCommand(['New'])
await comfyPage.nextFrame()
await loadImageOnNode(comfyPage)
const tab2Preview = comfyPage.page.locator('.image-preview img')
await expect(tab2Preview).toBeVisible()
// Create Tab 2 and load a different workflow with LoadImage
await comfyPage.menu.topbar.triggerTopbarCommand(['New'])
await comfyPage.nextFrame()
await loadImageOnNode(comfyPage)
const tab2Preview = comfyPage.page.locator('.image-preview img')
await expect(tab2Preview).toBeVisible()
// Switch to Tab 1 — its preview should be visible
const firstTab = await getTab(comfyPage, 0)
await firstTab.click()
await comfyPage.nextFrame()
await expect(
comfyPage.page.locator('.image-preview img')
).toBeVisible()
// Switch to Tab 1 — its preview should be visible
const firstTab = await getTab(comfyPage, 0)
await firstTab.click()
await comfyPage.nextFrame()
await expect(comfyPage.page.locator('.image-preview img')).toBeVisible()
// Switch to Tab 2 — its preview should be visible
const secondTab = await getTab(comfyPage, 1)
await secondTab.click()
await comfyPage.nextFrame()
await expect(
comfyPage.page.locator('.image-preview img')
).toBeVisible()
}
)
// Switch to Tab 2 — its preview should be visible
const secondTab = await getTab(comfyPage, 1)
await secondTab.click()
await comfyPage.nextFrame()
await expect(comfyPage.page.locator('.image-preview img')).toBeVisible()
})
})