page consistency, docs

This commit is contained in:
peintnermax
2024-09-17 11:58:07 +02:00
parent d55a409bf7
commit c1a487c233
6 changed files with 29 additions and 18 deletions

View File

@@ -111,7 +111,7 @@ describe("login", () => {
cy.get('button[type="submit"]').click();
cy.location("pathname", { timeout: 10_000 }).should(
"eq",
"/passkey/add",
"/passkey/set",
);
});
});

View File

@@ -17,6 +17,6 @@ describe("register", () => {
cy.get('input[type="checkbox"][value="privacypolicy"]').check();
cy.get('input[type="checkbox"][value="tos"]').check();
cy.get('button[type="submit"]').click();
cy.location("pathname", { timeout: 10_000 }).should("eq", "/passkey/add");
cy.location("pathname", { timeout: 10_000 }).should("eq", "/passkey/set");
});
});