Cypress - Component Testing
What will happen if you run this Cypress test?
const onChange = cy.spy();
cy.mount();
cy.get('input').type('abc');
expect(onChange).to.have.callCount(3);