Cypress - Component Testing
Identify the error in this Cypress test code:
const onSubmit = cy.spy(); cy.mount(); cy.get('form').submit(); expect(onSubmit).to.have.been.called;
