| 123456789101112131415 |
- import { jsdom } from 'jsdom';
- import Enzyme from 'enzyme';
- import Adapter from 'enzyme-adapter-react-15';
- Enzyme.configure({ adapter: new Adapter() });
- // fixed jsdom miss
- const documentHTML = '<!doctype html><html><body><div id="root"></div></body></html>';
- global.document = jsdom(documentHTML);
- global.window = document.defaultView;
- global.navigator = global.window.navigator;
- global.requestAnimationFrame = global.requestAnimationFrame || function requestAnimationFrame(cb) {
- return setTimeout(cb, 0);
- };
|