mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 04:36:19 +08:00
8501b708ea
* 📦 samller bundlesize limit * 🗑️ remove React static PropTypes * 🗑️ remove react-lifecycles-compat * 🗑️ remove matchMedia polyfill * 🗑️ remove Transfer buggy lazy prop * 🗑️ remove enquire.js dep * 🗑️ remove Transfer lazy related code and fix ci * 🗑️ remove used dom-closest * ⚡ replace dom-scroll-into-view to scroll-into-view for bundle size * ✅ fix eslint * 🆙 upgrade browserslist * ✅ fix test cases * 🗑️ remove @ant-design/create-react-context * 🆙 upgrade @ant-design/bisheng-plugin * 🆙 upgrade rc-slider * ✅ fix ci * 🆙 upgrade rc-tabs and rc-mentions * 📦 scroll-into-view -> scroll-into-view-if-needed * remove unused devDep * docs: 📝 update instruction about IE9/10 * 📦 reduce css bundle size by drop IE9/10 support * 🆙 upgrade rc-upload * 🗑️ drop unused swing motion css * ✅ update upload snapshots * 📦 lift css bundlesize limit to 55kb
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
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') {
|
|
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'));
|
|
};
|
|
global.window.scrollTo = () => {};
|
|
// ref: https://github.com/ant-design/ant-design/issues/18774
|
|
if (!global.window.matchMedia) {
|
|
Object.defineProperty(global.window, 'matchMedia', {
|
|
value: jest.fn(() => ({
|
|
matches: true,
|
|
addListener: () => {},
|
|
removeListener: () => {},
|
|
})),
|
|
});
|
|
}
|
|
}
|
|
|
|
// The built-in requestAnimationFrame and cancelAnimationFrame not working with jest.runFakeTimes()
|
|
// https://github.com/facebook/jest/issues/5147
|
|
global.requestAnimationFrame = cb => setTimeout(cb, 0);
|
|
global.cancelAnimationFrame = cb => clearTimeout(cb, 0);
|
|
|
|
const Enzyme = require('enzyme');
|
|
|
|
const Adapter = require('enzyme-adapter-react-16');
|
|
|
|
Enzyme.configure({ adapter: new Adapter() });
|