Primeiros passos realizados conforme conteúdo:
describe('alura busca cursos', () => {
beforeEach(() => {
cy.visit('https://www.alura.com.br');
})
it('buscar curso de java', () => {
})
})
Cypress retorna falha no beforeEach: (uncaught exception) A instrução 'cy' não fica destacada em azul. *ReferenceError: hljs is not defined This behavior is configurable, and you can choose to turn this off by listening to the uncaught:exception event. Because this error occurred during a before each hook we are skipping the remaining tests in the current suite: alura busca cursos
* Alguém poderia me ajudar com isso?