test: test

This commit is contained in:
Yiqun Xu
2025-06-11 04:59:07 -07:00
parent f145a89c66
commit 1f055686c3

View File

@@ -762,7 +762,7 @@ export class ComfyPage {
y: 625
}
})
await this.page.mouse.move(10, 10)
this.page.mouse.move(10, 10)
await this.nextFrame()
}
@@ -774,7 +774,7 @@ export class ComfyPage {
},
button: 'right'
})
await this.page.mouse.move(10, 10)
this.page.mouse.move(10, 10)
await this.nextFrame()
}
@@ -1072,9 +1072,7 @@ export const comfyPageFixture = base.extend<{
'Comfy.EnableTooltips': false,
'Comfy.userId': userId,
// Set tutorial completed to true to avoid loading the tutorial workflow.
'Comfy.TutorialCompleted': true,
// Set installed version for consistent test behavior.
'Comfy.InstalledVersion': '1.22.1'
'Comfy.TutorialCompleted': true
})
} catch (e) {
console.error(e)
@@ -1085,7 +1083,7 @@ export const comfyPageFixture = base.extend<{
},
comfyMouse: async ({ comfyPage }, use) => {
const comfyMouse = new ComfyMouse(comfyPage)
await use(comfyMouse)
use(comfyMouse)
}
})