ant-design/tests/setup.js

36 lines
1.2 KiB
JavaScript
Raw Normal View History

const React = require('react');
// eslint-disable-next-line no-console
console.log('Current React Version:', React.version);
/* 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'));
};
2018-05-22 16:39:17 +08:00
global.window.scrollTo = () => {};
// ref: https://github.com/ant-design/ant-design/issues/18774
if (!window.matchMedia) {
Object.defineProperty(global.window, 'matchMedia', {
value: jest.fn(query => ({
matches: query.includes('max-width'),
addListener: () => {},
removeListener: () => {},
})),
});
}
}
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
2018-11-28 15:00:03 +08:00
global.requestAnimationFrame = cb => setTimeout(cb, 0);
global.cancelAnimationFrame = cb => clearTimeout(cb, 0);
2017-09-20 16:26:18 +08:00
const Enzyme = require('enzyme');
const Adapter = require('enzyme-adapter-react-16');
2017-09-20 16:26:18 +08:00
Enzyme.configure({ adapter: new Adapter() });