This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
website/cypress/e2e/pages/authentication/forgot-password.cy.ts

40 lines
1.3 KiB
TypeScript

import { postUsersResetPasswordHandler } from "../../../fixtures/users/reset-password/post"
import { userExample } from "../../../fixtures/users/user"
describe("Pages > /authentication/forgot-password", () => {
beforeEach(() => {
cy.task("stopMockServer")
cy.visit("/authentication/forgot-password")
})
it("should succeeds and sends a password-reset request", () => {
cy.task("startMockServer", [postUsersResetPasswordHandler])
cy.get("#message").should("not.exist")
cy.get("[data-cy=input-email]").type(userExample.email)
cy.get("[data-cy=submit]").click()
cy.get("#message").should(
"have.text",
"Success: Password-reset request successful, please check your emails!",
)
})
it("should fails with unreachable api server", () => {
cy.get("#message").should("not.exist")
cy.get("[data-cy=input-email]").type(userExample.email)
cy.get("[data-cy=submit]").click()
cy.get("#message").should("have.text", "Error: Internal Server Error.")
})
it("should fails with wrong email format", () => {
cy.get("#message").should("not.exist")
cy.get("[data-cy=input-email]").type("test")
cy.get("[data-cy=submit]").click()
cy.get("#message").should(
"have.text",
"Error: Mmm… It seems that this email is not valid 🤔.",
)
})
})
export {}