Disable console output in unit test

This commit is contained in:
Pig Fang 2018-07-31 10:18:14 +08:00
parent 0423bef836
commit 8d23a14c79

View File

@ -5,6 +5,8 @@ window.blessing = {
base_url: '' base_url: ''
}; };
console.log = console.warn = console.error = () => {};
Vue.prototype.$t = key => key; Vue.prototype.$t = key => key;
Vue.directive('t', (el, { value }) => { Vue.directive('t', (el, { value }) => {