Created
March 19, 2020 01:17
-
-
Save ryanjyost/7fff64856465cd859f47855c36def78f to your computer and use it in GitHub Desktop.
commands/index
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Cypress.on("window:before:load", win => { | |
cy.stub(win.console, "error", msg => { | |
cy.now("task", "error", msg); | |
}); | |
cy.stub(win.console, "warn", msg => { | |
cy.now("task", "warn", msg); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment