mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
742999ff28
close #6560 close #3308 close #7341
19 lines
616 B
JavaScript
19 lines
616 B
JavaScript
import { jsdom } from 'jsdom';
|
|
|
|
// fixed jsdom miss
|
|
if (typeof window !== 'undefined') {
|
|
const documentHTML = '<!doctype html><html><body><div id="root"></div></body></html>';
|
|
global.document = jsdom(documentHTML);
|
|
global.window = document.parentWindow;
|
|
|
|
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.requestAnimationFrame = global.requestAnimationFrame || function (cb) {
|
|
return setTimeout(cb, 0);
|
|
};
|