UNPKG

388 BJavaScriptView Raw
1let warnedOnce = false;
2export default function unwrap(component) {
3 if (!warnedOnce) {
4 warnedOnce = true;
5 console.warn(['Material-UI: the test utils are deprecated, they are no longer present in v5.', 'The helpers were designed to work with enzyme.', 'However, the tests of the core components were moved to react-testing-library.'].join('\n'));
6 }
7
8 return component.Naked;
9}
\No newline at end of file