ant-design/tests/setup.js

31 lines
889 B
JavaScript
Raw Normal View History

/* eslint-disable global-require */
2017-08-23 16:29:56 +08:00
import { jsdom } from 'jsdom';
// fixed jsdom miss
if (typeof window !== 'undefined') {
2017-08-24 10:19:13 +08:00
const documentHTML = '<!doctype html><html><body><div id="root"></div></body></html>';
global.document = jsdom(documentHTML);
global.window = document.parentWindow;
global.window.resizeTo = (width, height) => {
global.window.innerWidth = width || global.window.innerWidth;
global.window.innerHeight = height || global.window.innerHeight;
global.window.dispatchEvent(new Event('resize'));
};
}
2017-08-23 16:29:56 +08:00
global.requestAnimationFrame = global.requestAnimationFrame || function (cb) {
return setTimeout(cb, 0);
};
2017-09-20 16:26:18 +08:00
const Enzyme = require('enzyme');
let Adapter;
if (process.env.REACT === '15') {
Adapter = require('enzyme-adapter-react-15');
} else {
Adapter = require('enzyme-adapter-react-16');
}
2017-09-20 16:26:18 +08:00
Enzyme.configure({ adapter: new Adapter() });