UNPKG

hae

Version:

Mobile web UI based on Vux

16 lines (13 loc) 316 B
import Comp from './index.vue' import { mount } from 'vue-test-utils' import { expect } from 'chai' describe('XSwitch', () => { it('basic', () => { const wrapper = mount(Comp, { propsData: { title: 'XSwitch' } }) expect(wrapper.name()).to.equal('x-switch') }) })