Skip to content

Instantly share code, notes, and snippets.

@eliihen
Created May 10, 2018 12:37
Show Gist options
  • Save eliihen/92a91c989c62b7d8d21e44eae917b890 to your computer and use it in GitHub Desktop.
Save eliihen/92a91c989c62b7d8d21e44eae917b890 to your computer and use it in GitHub Desktop.
const originalConsoleError = console.error;
console.error = message => {
if (/(Failed prop type)/.test(message)) {
throw new Error(message);
}
originalConsoleError(message);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment