ant-design-vue/tests/setup.js

48 lines
1.3 KiB
JavaScript
Raw Normal View History

2019-01-12 03:33:27 +00:00
import Vue from 'vue';
2018-05-18 06:30:17 +00:00
// Vue.config.silent = true
2018-05-17 02:40:50 +00:00
2018-05-13 15:11:51 +00:00
/* eslint-disable global-require */
if (typeof window !== 'undefined') {
global.window.resizeTo = (width, height) => {
2019-01-12 03:33:27 +00:00
global.window.innerWidth = width || global.window.innerWidth;
global.window.innerHeight = height || global.window.innerHeight;
global.window.dispatchEvent(new Event('resize'));
};
global.window.scrollTo = () => {};
2018-05-13 15:11:51 +00:00
}
// The built-in requestAnimationFrame and cancelAnimationFrame not working with jest.runFakeTimes()
// https://github.com/facebook/jest/issues/5147
2019-01-12 03:33:27 +00:00
global.requestAnimationFrame = function(cb) {
return setTimeout(cb, 0);
};
2018-05-13 15:11:51 +00:00
2019-01-12 03:33:27 +00:00
global.cancelAnimationFrame = function(cb) {
return clearTimeout(cb, 0);
};
2018-05-13 15:11:51 +00:00
2019-01-12 03:33:27 +00:00
const mockMath = Object.create(global.Math);
mockMath.random = () => 0.5;
global.Math = mockMath;
2018-05-18 14:52:24 +00:00
2018-05-18 14:04:10 +00:00
Vue.component('transition-group', {
props: ['tag'],
2019-01-12 03:33:27 +00:00
render(createElement) {
return createElement(this.tag || 'div', null, this.$slots.default);
2018-05-18 14:04:10 +00:00
},
2019-01-12 03:33:27 +00:00
});
2018-05-18 14:04:10 +00:00
2019-01-12 03:33:27 +00:00
Vue.prototype.$emit = function() {
const vm = this;
const args = [].slice.call(arguments, 0);
const filterEvent = [];
const eventName = args[0];
2018-05-20 13:42:23 +00:00
if (args.length && vm.$listeners[eventName]) {
if (filterEvent.includes(eventName)) {
2019-01-12 03:33:27 +00:00
vm.$emit(eventName, ...args.slice(1));
2018-05-20 13:42:23 +00:00
} else {
2019-01-12 03:33:27 +00:00
vm.$listeners[eventName](...args.slice(1));
2018-05-20 13:42:23 +00:00
}
}
2019-01-12 03:33:27 +00:00
};