Cypress - Test Organization and Patterns
This App Action method is intended to log in a user:
What is the error and how to fix it?
const login = (user, pass) => { cy.get('#username').type(user); cy.get('#password').type(pass); cy.get('#login-btn').click }What is the error and how to fix it?
