test: remove cloud-specific missing model tests

Cloud @cloud tests require comfyPage fixture to bypass Firebase auth
guard, which is not yet supported. Deferred to separate infra PR.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
jaeone94
2026-04-04 19:30:11 +09:00
parent 5a2e91c5cf
commit 94fe690d67

View File

@@ -102,35 +102,4 @@ test.describe('Errors tab - Missing models', { tag: '@ui' }, () => {
await expect(downloadButton.first()).toBeVisible()
})
})
test.describe('Cloud-specific', { tag: '@cloud' }, () => {
test('Should not show Copy URL button', async ({ comfyPage }) => {
await openErrorsTabViaSeeErrors(comfyPage, 'missing/missing_models')
const copyUrlButton = comfyPage.page.getByTestId(
TestIds.dialogs.missingModelCopyUrl
)
await expect(copyUrlButton).not.toBeVisible()
})
test('Should not show Download button', async ({ comfyPage }) => {
await openErrorsTabViaSeeErrors(comfyPage, 'missing/missing_models')
const downloadButton = comfyPage.page.getByTestId(
TestIds.dialogs.missingModelDownload
)
await expect(downloadButton).not.toBeVisible()
})
test('Should show import not supported notice for non-asset models', async ({
comfyPage
}) => {
await openErrorsTabViaSeeErrors(comfyPage, 'missing/missing_models')
const notice = comfyPage.page.getByTestId(
TestIds.dialogs.missingModelImportUnsupported
)
await expect(notice).toBeVisible()
})
})
})