11/* eslint-disable @typescript-eslint/no-explicit-any */
22describe ( "booking pages" , ( ) => {
33 describe ( "free user" , ( ) => {
4- it ( "only one visibile event" , ( ) => {
4+ it ( "only one visible event" , ( ) => {
55 cy . visit ( "/free" ) ;
66 cy . get ( "[data-testid=event-types]" ) . children ( ) . should ( "have.length" , 1 ) ;
77 cy . get ( '[href="/free/30min"]' ) . should ( "exist" ) ;
@@ -18,7 +18,7 @@ describe("booking pages", () => {
1818 } ) ;
1919 } ) ;
2020
21- it ( "/free/60min is not bookable" , ( ) => {
21+ it . skip ( "/free/60min is not bookable" , ( ) => {
2222 cy . request ( {
2323 method : "GET" ,
2424 url : "/free/60min" ,
@@ -28,7 +28,7 @@ describe("booking pages", () => {
2828 } ) ;
2929 } ) ;
3030 } ) ;
31- it ( "pro user's page has at least 2 visibile events" , ( ) => {
31+ it ( "pro user's page has at least 2 visible events" , ( ) => {
3232 cy . visit ( "/pro" ) ;
3333 cy . get ( "[data-testid=event-types]" ) . children ( ) . should ( "have.length.at.least" , 2 ) ;
3434 } ) ;
@@ -49,7 +49,7 @@ describe("booking pages", () => {
4949 } ) ;
5050 } ) ;
5151
52- it ( "/free-first-hidden/60min is not bookable" , ( ) => {
52+ it . skip ( "/free-first-hidden/60min is not bookable" , ( ) => {
5353 cy . request ( {
5454 method : "GET" ,
5555 url : "/free-first-hidden/60min" ,
0 commit comments