We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c540de commit e02c1b2Copy full SHA for e02c1b2
browser_tests/tests/vueNodes/nodeStates/bypass.spec.ts
@@ -15,13 +15,14 @@ test.describe('Vue Node Bypass', () => {
15
test('should allow toggling bypass on a selected node with hotkey', async ({
16
comfyPage
17
}) => {
18
+ await comfyPage.setup()
19
await comfyPage.page.getByText('Load Checkpoint').click()
20
await comfyPage.page.keyboard.press(BYPASS_HOTKEY)
21
22
const checkpointNode = comfyPage.vueNodes.getNodeByTitle('Load Checkpoint')
23
await expect(checkpointNode).toHaveClass(BYPASS_CLASS)
24
await comfyPage.page.mouse.click(400, 300)
- await comfyPage.nextFrame()
25
+ await comfyPage.page.waitForTimeout(128)
26
await expect(comfyPage.canvas).toHaveScreenshot(
27
'vue-node-bypassed-state.png'
28
)
0 commit comments