ant-design-vue/tests/setup.js

30 lines
774 B
JavaScript
Raw Normal View History

2018-05-18 22:04:10 +08:00
import Vue from 'vue'
2018-05-18 14:30:17 +08:00
// Vue.config.silent = true
2018-05-17 10:40:50 +08:00
2018-05-13 23:11:51 +08:00
/* 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'))
}
}
// The built-in requestAnimationFrame and cancelAnimationFrame not working with jest.runFakeTimes()
// https://github.com/facebook/jest/issues/5147
global.requestAnimationFrame = function (cb) {
return setTimeout(cb, 0)
}
global.cancelAnimationFrame = function (cb) {
return clearTimeout(cb, 0)
}
2018-05-18 22:04:10 +08:00
Vue.component('transition-group', {
props: ['tag'],
render (createElement) {
return null
},
})