blessing-skin-server/resources/assets/tests/setup.js
2018-09-08 10:11:44 +08:00

29 lines
621 B
JavaScript

import 'jest-extended';
import Vue from 'vue';
window.blessing = {
base_url: '',
site_name: 'Blessing Skin',
version: '4.0.0'
};
const noop = () => undefined;
Object.keys(console).forEach(method => console[method] = noop);
Vue.prototype.$t = key => key;
Vue.directive('t', (el, { value }) => {
if (typeof value === 'string') {
el.innerHTML = value;
} else if (typeof value === 'object') {
el.innerHTML = value.path;
} else {
throw new Error('[i18n] Invalid arguments in `v-t` directive.');
}
});
Vue.prototype.$http = {
get: jest.fn(),
post: jest.fn(),
};