Skip to content

Instantly share code, notes, and snippets.

View rafael-anachoreta's full-sized avatar

Rafael Anachoreta rafael-anachoreta

View GitHub Profile
//__bug.spec.js
describe('Bug', ()=>{
before(() =>{
cy.task('message', 'I\'m running!');
});
it('Should only log once', () => {
cy.visit('https://www.google.com');
});
});