Skip to content

Instantly share code, notes, and snippets.

@oieduardorabelo
Forked from stipsan/package.json
Created June 16, 2017 09:47
Show Gist options
  • Save oieduardorabelo/898772a6a203e9f09c44bac07119840e to your computer and use it in GitHub Desktop.
Save oieduardorabelo/898772a6a203e9f09c44bac07119840e to your computer and use it in GitHub Desktop.
Testando com Jest: Dica #8
{
"jest": {
"setupFiles": [
"<rootDir>/test-setup.js"
]
}
}
// eslint-disable-next-line no-console
const error = console.error
// eslint-disable-next-line no-console
console.error = (warning, ...args) => {
if (/(Invalid prop|Failed prop type)/gi.test(warning)) {
throw new Error(warning)
}
error.apply(console, [warning, ...args])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment