From ee1b853c5c63f0309fb0751a0eb89a2cf3ac14f3 Mon Sep 17 00:00:00 2001 From: onehanddev Date: Wed, 27 Nov 2024 17:59:24 +0530 Subject: [PATCH] fix typo --- e2e/tests/auth/sign-up.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/tests/auth/sign-up.spec.ts b/e2e/tests/auth/sign-up.spec.ts index 32b39383..1a08ff73 100644 --- a/e2e/tests/auth/sign-up.spec.ts +++ b/e2e/tests/auth/sign-up.spec.ts @@ -36,7 +36,7 @@ test.describe("Auth - Sign Up", () => { await page.goto(`/auth/signup`); await page.getByPlaceholder("Enter your name").fill(user.name); - await page.getByPlaceholder("Enter organisation name").fill(user.partnerName); + await page.getByPlaceholder("Enter organization name").fill(user.partnerName); await page.getByLabel("Email").fill(user.email); await page.getByRole("checkbox").check();