Cypress - Navigation and URL
Given this Cypress test snippet:
What does this test verify?
cy.visit('/home')
cy.get('a#profile-link').click()
cy.url().should('include', '/profile')What does this test verify?
