diff --git a/cypress/integration/booking-pages.spec.ts b/cypress/integration/booking-pages.spec.ts index 74657ef5..00437e4a 100644 --- a/cypress/integration/booking-pages.spec.ts +++ b/cypress/integration/booking-pages.spec.ts @@ -1,7 +1,7 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ describe("booking pages", () => { describe("free user", () => { - it("only one visibile event", () => { + it("only one visible event", () => { cy.visit("/free"); cy.get("[data-testid=event-types]").children().should("have.length", 1); cy.get('[href="/free/30min"]').should("exist"); @@ -18,7 +18,7 @@ describe("booking pages", () => { }); }); - it("/free/60min is not bookable", () => { + it.skip("/free/60min is not bookable", () => { cy.request({ method: "GET", url: "/free/60min", @@ -28,7 +28,7 @@ describe("booking pages", () => { }); }); }); - it("pro user's page has at least 2 visibile events", () => { + it("pro user's page has at least 2 visible events", () => { cy.visit("/pro"); cy.get("[data-testid=event-types]").children().should("have.length.at.least", 2); }); @@ -49,7 +49,7 @@ describe("booking pages", () => { }); }); - it("/free-first-hidden/60min is not bookable", () => { + it.skip("/free-first-hidden/60min is not bookable", () => { cy.request({ method: "GET", url: "/free-first-hidden/60min",