Add signin e2e test

This commit is contained in:
Martin H. Normark
2022-12-29 18:04:21 +01:00
parent f9bb5b2bf1
commit 8c75c6645d
+10
View File
@@ -0,0 +1,10 @@
describe("empty spec", () => {
it("passes", () => {
cy.visit("/auth/signin");
cy.get(".chakra-input").type(`test@example.com`);
cy.get(".chakra-stack > .chakra-button").click();
cy.url().should("contain", "/auth/verify");
});
});
export {};