mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-26 19:09:52 +00:00
11 lines
326 B
TypeScript
11 lines
326 B
TypeScript
import { expect } from '@playwright/test'
|
|
|
|
import { comfyPageFixture as test } from '../fixtures/ComfyPage'
|
|
|
|
test.describe('Note Node', () => {
|
|
test('Can load node nodes', async ({ comfyPage }) => {
|
|
await comfyPage.loadWorkflow('note_nodes')
|
|
await expect(comfyPage.canvas).toHaveScreenshot('note_nodes.png')
|
|
})
|
|
})
|