Cypress - Test Organization and Patterns
Identify the error in this Cypress pattern code:
function submitForm() {
cy.get('#submit').click()
}
it('submits form', () => {
submitForm();
cy.get('#submit').click();
});