@baolq/styled-components
Version:
Visual primitives for the component age. Use the best bits of ES6 and CSS to style your apps without stress
21 lines (17 loc) • 567 B
text/typescript
const consoleError = console.error;
const suppressedErrors = [
'Error: Could not parse CSS stylesheet',
'Warning: Use the `defaultValue` or `value` props instead of setting children on <textarea>',
];
beforeEach(() => {
// Suppress errors from JSDOM CSS parser
// See: https://github.com/jsdom/jsdom/issues/2177
console.error = (message: any) => {
if (!suppressedErrors.some(suppressedError => message.includes(suppressedError))) {
consoleError(message);
}
};
});
afterEach(() => {
console.error = consoleError;
});