🛂 Migrate to Chakra UI v3 (#1496)

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Alejandra
2025-02-17 19:33:00 +00:00
committed by GitHub
parent 74e2604faf
commit 55df823739
60 changed files with 4682 additions and 4399 deletions

View File

@@ -18,7 +18,7 @@ const fillForm = async (
await page.getByPlaceholder("Full Name").fill(full_name)
await page.getByPlaceholder("Email").fill(email)
await page.getByPlaceholder("Password", { exact: true }).fill(password)
await page.getByPlaceholder("Repeat Password").fill(confirm_password)
await page.getByPlaceholder("Confirm Password").fill(confirm_password)
}
const verifyInput = async (
@@ -38,7 +38,7 @@ test("Inputs are visible, empty and editable", async ({ page }) => {
await verifyInput(page, "Full Name")
await verifyInput(page, "Email")
await verifyInput(page, "Password", { exact: true })
await verifyInput(page, "Repeat Password")
await verifyInput(page, "Confirm Password")
})
test("Sign Up button is visible", async ({ page }) => {