From 612500a4dc852713f790d09415c841eb8083dcb7 Mon Sep 17 00:00:00 2001 From: Chenlei Hu Date: Tue, 22 Apr 2025 21:35:26 -0400 Subject: [PATCH] [nit] Fix typo (#3577) --- browser_tests/tests/dialog.spec.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/browser_tests/tests/dialog.spec.ts b/browser_tests/tests/dialog.spec.ts index c7d267767..1fbd0de41 100644 --- a/browser_tests/tests/dialog.spec.ts +++ b/browser_tests/tests/dialog.spec.ts @@ -360,10 +360,10 @@ test.describe('Signin dialog', () => { window['app'].extensionManager.dialog.showSignInDialog() }) - const emailInput = comfyPage.page.locator('#comfy-org-sign-in-password') - await emailInput.waitFor({ state: 'visible' }) - await emailInput.press('Control+v') - await expect(emailInput).toHaveValue('test_password') + const input = comfyPage.page.locator('#comfy-org-sign-in-password') + await input.waitFor({ state: 'visible' }) + await input.press('Control+v') + await expect(input).toHaveValue('test_password') expect(await comfyPage.getNodes()).toHaveLength(nodeNum) })