UNPKG

236 BJavaScriptView Raw
1import { configure } from 'enzyme';
2import Adapter from 'enzyme-adapter-react-16';
3import './__mocks__/matchMedia';
4
5module.exports = async () => {
6
7 configure({ adapter: new Adapter() });
8
9 function noop() {
10 return null;
11 }
12
13};