diff --git a/browser_tests/fixtures/ComfyPage.ts b/browser_tests/fixtures/ComfyPage.ts index 52c4a44db..2f6fc0b14 100644 --- a/browser_tests/fixtures/ComfyPage.ts +++ b/browser_tests/fixtures/ComfyPage.ts @@ -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) } })