You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
563 B
16 lines
563 B
/* eslint-disable import/first */
|
|
global.requestAnimationFrame =
|
|
global.requestAnimationFrame || function requestAnimationFrame(callback) {
|
|
setTimeout(callback, 0);
|
|
};
|
|
import { JSDOM } from 'jsdom';
|
|
import Enzyme from 'enzyme';
|
|
import Adapter from 'enzyme-adapter-react-16';
|
|
|
|
Enzyme.configure({ adapter: new Adapter() });
|
|
|
|
// fixed jsdom miss
|
|
const documentHTML = '<!doctype html><html><body><div id="root"></div></body></html>';
|
|
global.document = new JSDOM(documentHTML);
|
|
global.window = document.defaultView;
|
|
global.navigator = global.window.navigator;
|
|
|