Cypress - Navigation and URL
Consider this Cypress test snippet:
What is the expected behavior after
cy.visit('/home')
cy.get('#refresh-btn').click()
cy.reload()
cy.get('.welcome-message').should('be.visible')What is the expected behavior after
cy.reload() is called?