mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-03 14:54:37 +00:00
- Remove comfyPageFixture re-export from ComfyPage.ts - Update all test imports to use comfyPageFixture from its own file - Update README.md example to show correct import path - Fixes: comfyPageFixture → LocalhostComfyPage → ComfyPage circular import
29 lines
989 B
TypeScript
29 lines
989 B
TypeScript
import { expect } from '@playwright/test'
|
|
|
|
import { comfyPageFixture as test } from '../fixtures/comfyPageFixture'
|
|
|
|
test.beforeEach(async ({ comfyPage }) => {
|
|
await comfyPage.setSetting('Comfy.UseNewMenu', 'Disabled')
|
|
})
|
|
|
|
test.describe('Record Audio Node', () => {
|
|
test('should add a record audio node and take a screenshot', async ({
|
|
comfyPage
|
|
}) => {
|
|
// Open the search box by double clicking on the canvas
|
|
await comfyPage.doubleClickCanvas()
|
|
await expect(comfyPage.searchBox.input).toHaveCount(1)
|
|
|
|
// Search for and add the RecordAudio node
|
|
await comfyPage.searchBox.fillAndSelectFirstNode('RecordAudio')
|
|
await comfyPage.nextFrame()
|
|
|
|
// Verify the RecordAudio node was added
|
|
const recordAudioNodes = await comfyPage.getNodeRefsByType('RecordAudio')
|
|
expect(recordAudioNodes.length).toBe(1)
|
|
|
|
// Take a screenshot of the canvas with the RecordAudio node
|
|
await expect(comfyPage.canvas).toHaveScreenshot('record_audio_node.png')
|
|
})
|
|
})
|