feat(blockTools): add more mock fns to mockBlock from antd

This commit is contained in:
Gervwyk 2020-11-03 00:34:01 +02:00
parent 23de45dcbf
commit 746ffdbfc4
2 changed files with 33 additions and 13 deletions

View File

@ -58,6 +58,7 @@
"clean-webpack-plugin": "3.0.0",
"css-loader": "5.0.0",
"enzyme": "3.11.0",
"enzyme-to-json": "3.6.1",
"html-webpack-plugin": "4.5.0",
"identity-obj-proxy": "3.0.0",
"jest": "26.6.1",

View File

@ -49,19 +49,37 @@ const mockBlock = ({ meta, logger }) => {
removeItem.mockReset();
setValue.mockReset();
unshiftItem.mockReset();
Object.defineProperty(window, 'matchMedia', {
writable: true,
value: jest.fn().mockImplementation((query) => ({
matches: false,
media: query,
onchange: null,
addListener: jest.fn(),
removeListener: jest.fn(),
addEventListener: jest.fn(),
removeEventListener: jest.fn(),
dispatchEvent: jest.fn(),
})),
});
// for antd from:
// https://github.com/ant-design/ant-design/blob/master/tests/setup.js
// ref: https://github.com/ant-design/ant-design/issues/18774
if (!window.matchMedia) {
Object.defineProperty(window, 'matchMedia', {
writable: true,
value: jest.fn().mockImplementation((query) => ({
matches: false,
media: query.includes('max-width'),
onchange: null,
addListener: jest.fn(),
removeListener: jest.fn(),
addEventListener: jest.fn(),
removeEventListener: jest.fn(),
dispatchEvent: jest.fn(),
})),
});
}
if (typeof window !== 'undefined') {
window.resizeTo = (width, height) => {
window.innerWidth = width || window.innerWidth;
window.innerHeight = height || window.innerHeight;
window.dispatchEvent(new Event('resize'));
};
window.scrollTo = () => {};
// Fix css-animation or rc-motion deps on these
// https://github.com/react-component/motion/blob/9c04ef1a210a4f3246c9becba6e33ea945e00669/src/util/motion.ts#L27-L35
// https://github.com/yiminghe/css-animation/blob/a5986d73fd7dfce75665337f39b91483d63a4c8c/src/Event.js#L44
window.AnimationEvent = window.AnimationEvent || (() => {});
window.TransitionEvent = window.TransitionEvent || (() => {});
}
};
const getProps = (block) => {
const props = stubBlockProps({ block, meta, logger });
@ -70,6 +88,7 @@ const mockBlock = ({ meta, logger }) => {
methods,
};
};
return { before, methods, getProps };
};