ant-design/tests/setup.js

30 lines
861 B
JavaScript
Raw Normal View History

/* eslint-disable global-require */
if (typeof window !== 'undefined') {
2017-08-24 10:19:13 +08:00
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
// The built-in requestAnimationFrame and cancelAnimationFrame not working with jest.runFakeTimes()
// https://github.com/facebook/jest/issues/5147
global.requestAnimationFrame = function (cb) {
2017-08-23 16:29:56 +08:00
return setTimeout(cb, 0);
};
2017-09-20 16:26:18 +08:00
global.cancelAnimationFrame = function (cb) {
return clearTimeout(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() });