Last active
July 1, 2023 00:54
-
-
Save marta-pinkowska/4130ca8d7336d063e41f8cab25f83496 to your computer and use it in GitHub Desktop.
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
// tools/jest/setupTests.js | |
const error = console.error; | |
console.error = (...args) => | |
// Suppress error messages regarding network error in tests | |
/Error: Request failed with status code 500/m.test( | |
args[0] | |
) | |
? void 0 | |
: error(...args); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment