Cypress - Component Testing
Find the bug in this Cypress component test:
describe('InputField', () => {
it('accepts text input', () => {
cy.mount( )
cy.get('input').type('Hello')
cy.get('input').should('have.value', 'Hello')
})
})