31 lines
797 B
JavaScript
31 lines
797 B
JavaScript
import { mount } from '@vue/test-utils'
|
|
import D2ModuleIndexBanner from '@/components/d2-module-index-banner/index.vue'
|
|
|
|
describe('d2-module-index-banner', () => {
|
|
// 存在且是Vue组件实例
|
|
it('is a vue instance', () => {
|
|
const wrapper = mount(D2ModuleIndexBanner, {
|
|
stubs: ['d2-icon']
|
|
})
|
|
|
|
expect(wrapper.exists()).toBeTruthy()
|
|
expect(wrapper.isVueInstance()).toBeTruthy()
|
|
})
|
|
|
|
// props
|
|
it('has props', () => {
|
|
const wrapper = mount(D2ModuleIndexBanner, {
|
|
stubs: ['d2-icon'],
|
|
propsData: {
|
|
title: 'title',
|
|
subTitle: 'subTitle',
|
|
link: 'link'
|
|
}
|
|
})
|
|
|
|
expect(wrapper.props().title).toEqual('title')
|
|
expect(wrapper.props().subTitle).toEqual('subTitle')
|
|
expect(wrapper.props().link).toEqual('link')
|
|
})
|
|
})
|