Cypress - Writing Tests
Identify the error in the following Cypress test code:
describe('User Tests', () => {
it('checks user profile', () => {
cy.visit('/profile')
}
});