mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 04:36:19 +08:00
8226ede38e
* Fix test case for new jsdom * use setTimeout as raf in jest jsdom * Fix cancelAnimationFrame * Add comment for facebook/jest#5147 * longer timeout * fix snap * upgrade antd-tools
30 lines
861 B
JavaScript
30 lines
861 B
JavaScript
/* eslint-disable global-require */
|
|
if (typeof window !== 'undefined') {
|
|
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'));
|
|
};
|
|
}
|
|
|
|
// The built-in requestAnimationFrame and cancelAnimationFrame not working with jest.runFakeTimes()
|
|
// https://github.com/facebook/jest/issues/5147
|
|
global.requestAnimationFrame = function (cb) {
|
|
return setTimeout(cb, 0);
|
|
};
|
|
|
|
global.cancelAnimationFrame = function (cb) {
|
|
return clearTimeout(cb, 0);
|
|
};
|
|
|
|
const Enzyme = require('enzyme');
|
|
|
|
let Adapter;
|
|
if (process.env.REACT === '15') {
|
|
Adapter = require('enzyme-adapter-react-15');
|
|
} else {
|
|
Adapter = require('enzyme-adapter-react-16');
|
|
}
|
|
|
|
Enzyme.configure({ adapter: new Adapter() });
|