Created
March 19, 2020 01:19
-
-
Save ryanjyost/2a3af39dc1b18a423047a3923192c430 to your computer and use it in GitHub Desktop.
support/index
This file contains hidden or 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 => { | |
if (msg.includes("This is an error")) { | |
return null; | |
} | |
cy.now("task", "error", msg); | |
throw new 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