Cypress - Writing Tests
Identify the issue in this Cypress test code:
describe('Form Validation', () => {
it('validates email input', () => {
cy.get('#email').should('exist')
})
it 'validates password input', () => {
cy.get('#password').should('be.visible')
}
})