ant-design-vue/tests/setup.js

53 lines
1.5 KiB
JavaScript
Raw Normal View History

2020-10-28 15:31:45 +08:00
import { config } from '@vue/test-utils';
2022-07-06 17:40:21 +08:00
const util = require('util');
2018-05-17 10:40:50 +08:00
2020-10-28 15:31:45 +08:00
config.global.stubs = {
transition: false,
'transition-group': false,
};
2018-05-13 23:11:51 +08:00
/* eslint-disable global-require */
if (typeof window !== 'undefined') {
global.window.resizeTo = (width, height) => {
2019-01-12 11:33:27 +08:00
global.window.innerWidth = width || global.window.innerWidth;
global.window.innerHeight = height || global.window.innerHeight;
global.window.dispatchEvent(new Event('resize'));
};
global.window.scrollTo = () => {};
2020-08-30 22:23:36 +08:00
if (!window.matchMedia) {
Object.defineProperty(global.window, 'matchMedia', {
value: jest.fn(query => ({
matches: query.includes('max-width'),
addListener: jest.fn(),
removeListener: jest.fn(),
})),
});
}
2022-07-06 17:40:21 +08:00
// ref: https://jestjs.io/docs/manual-mocks#mocking-methods-which-are-not-implemented-in-jsdom
// ref: https://github.com/jsdom/jsdom/issues/2524
Object.defineProperty(window, 'TextEncoder', {
writable: true,
value: util.TextEncoder,
});
Object.defineProperty(window, 'TextDecoder', {
writable: true,
value: util.TextDecoder,
});
2018-05-13 23:11:51 +08:00
}
2021-06-19 22:47:28 +08:00
global.ResizeObserver = require('resize-observer-polyfill');
2018-05-13 23:11:51 +08:00
// The built-in requestAnimationFrame and cancelAnimationFrame not working with jest.runFakeTimes()
// https://github.com/facebook/jest/issues/5147
2021-06-23 23:08:16 +08:00
global.requestAnimationFrame = function (cb) {
2019-01-12 11:33:27 +08:00
return setTimeout(cb, 0);
};
2018-05-13 23:11:51 +08:00
2021-06-23 23:08:16 +08:00
global.cancelAnimationFrame = function (cb) {
2019-01-12 11:33:27 +08:00
return clearTimeout(cb, 0);
};
2018-05-13 23:11:51 +08:00
2019-01-12 11:33:27 +08:00
const mockMath = Object.create(global.Math);
mockMath.random = () => 0.5;
global.Math = mockMath;