Cypress - Writing Tests
Identify the error in this Cypress test structure:
describe('Form Tests', () => {
cy.get('input').should('exist')
it('checks input value', () => {
cy.get('input').should('have.value', '')
})
})