Meu código está dando erro dizendo que existe uma Unexpected token: ",". Código abaixo:
describe('aluralogin', () => {
beforeEach(() => {
cy.visit('https://www.alura.com.br/');
})
it('verifica mensagens validacao', () => {
cy.contains('a','Entrar').click();
cy.get('#login-email').type("emanuelyjochims31@gmail.com");
})
})
Estou tentando fazer meu login na alura e ele me apresenta este erro:
SyntaxError The following error originated from your application code, not from Cypress.
Unexpected token ','
When Cypress detects uncaught errors originating from your application it will automatically fail the current test.
This behavior is configurable, and you can choose to turn this off by listening to the uncaught:exception event.Learn more View stack trace Print