Skip to content

Instantly share code, notes, and snippets.

@filiphric
Created March 9, 2020 12:56
Show Gist options
  • Save filiphric/afb65e4e5444c8c498146f47b5944ae9 to your computer and use it in GitHub Desktop.
Save filiphric/afb65e4e5444c8c498146f47b5944ae9 to your computer and use it in GitHub Desktop.
beforeEach( function() {
window.logCalls = 1;
});
Cypress.Commands.overwrite('log', (originalFn, message) => {
Cypress.log({
displayName: `--- ${window.logCalls}. ${message} ---`,
name: `--- ${window.logCalls}. ${message} ---`,
message: ''
});
window.logCalls++;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment