match href not pathname

This commit is contained in:
peintnermax
2023-08-02 15:02:36 +02:00
parent 0a98bf1094
commit 24e57e992b

View File

@@ -27,11 +27,10 @@ describe("register idps", () => {
}); });
}); });
it("should show a custom text on the idp button", () => { it("should redirect the user to the correct url", () => {
cy.visit("/register/idp"); cy.visit("/register/idp");
const button = cy.get('button[e2e="google"]'); const button = cy.get('button[e2e="google"]');
// button.find("span").contains(CUSTOM_TEXT);
button.click(); button.click();
cy.location("pathname", { timeout: 10_000 }).should("eq", IDP_URL); cy.location("href", { timeout: 10_000 }).should("eq", IDP_URL);
}); });
}); });