chore: remove redundant code (#5004)

This commit is contained in:
neverland 2019-11-14 11:22:19 +08:00 committed by GitHub
parent aee1091c5c
commit 9ee9b2ef38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 7 deletions

View File

@ -80,8 +80,6 @@ Locale.add({
export function demoWrapper(module, name) {
const component = module.default;
name = 'demo-' + name;
component.name = name;
const { i18n: config } = component;
if (config) {

View File

@ -1,5 +1,4 @@
import Vue from 'vue';
import './transition';
import { mount, TransitionStub } from '@vue/test-utils';
import { trigger, triggerDrag } from './event';
import { mockScrollTop, mockGetBoundingClientRect } from './dom';

View File

@ -1,4 +0,0 @@
import Vue from 'vue';
import { TransitionStub } from '@vue/test-utils';
Vue.component('transition', TransitionStub as any);