Cypress - Basics and Setup
Identify the error in this Cypress test code:
describe('Login test', () => {
it('logs in user', () => {
cy.visit('https://app.com')
cy.get('#username').type('user1')
cy.get('#password').type('pass123')
cy.get('button.submit').click
cy.url().should('include', '/home')
})
})