I have this code
cy.get(element).should('contain.text', search_word || search_word.toLowerCase())
And I get this error
expected <div.games__element__title.card-title.h5> to contain text Hot, but the text was Ultimate hot
How can I use OR operator, so I can assert that the text of element contains the searching word written either in uppercase or in lowercase letters?