mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 04:36:19 +08:00
4cdf37bedb
* init form * first demo * add normal login * add style * webit * support nest errors * beauti form errors * use onReset * modal demo * add list demo * match key of errors logic * date demo * customize component * moving style * add status style * without form create * add demos * add inline style * clean up legacy * fix drawer demo * mention * fix edit-row * editable table cell * update mentions demo * fix some test case * fix upload test * fix lint * part of doc * fix ts * doc update * rm react 15 * rm config * enhance test coverage * clean up * fix FormItem context pass logic * add more demo * en to build * update demo * update demo & snapshot * more doc * update list doc * update doc * update demo to display condition render * update snapshot * add provider doc * support configProvider * more doc about validateMessages * more description * more and more doc * fix typo * en doc * Form.List doc * m v3 -> v4 * add skip
21 lines
751 B
JavaScript
21 lines
751 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'));
|
|
};
|
|
global.window.scrollTo = () => {};
|
|
}
|
|
|
|
// 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() });
|