Cypress - Assertions
Identify the error in this Cypress test code:
Given the element
cy.get('.alert').should('be.visible').should('have.text', 'Error occurred')Given the element
<div class='alert' style='display:none'>Error occurred</div> is hidden.