Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
test: There are two of them
  • Loading branch information
DrJKL committed Dec 8, 2025
commit 1735ca8f7dc448ddf8ab84f2ad9e0859f5dc6bc0
4 changes: 3 additions & 1 deletion browser_tests/tests/templates.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,9 @@ test.describe('Templates', () => {
expect(englishRequest.url()).toContain('templates/index.json')

// Verify English titles are shown as fallback
await expect(comfyPage.page.getByText('All Templates')).toBeVisible()
await expect(
comfyPage.page.getByRole('main').getByText('All Templates')
).toBeVisible()
})

test('template cards are dynamically sized and responsive', async ({
Expand Down
Loading