import { mount } from '@vue/test-utils'
import IbpsContainerCard from '@/components/ibps-container/components/ibps-container-card.vue'
describe('ibps-container-card', () => {
// 存在且是Vue组件实例
it('is a vue instance', () => {
const wrapper = mount(IbpsContainerCard)
expect(wrapper.exists()).toBeTruthy()
expect(wrapper.isVueInstance()).toBeTruthy()
})
// 包含特定类名
it('contains specific classnames', () => {
const wrapper = mount(IbpsContainerCard, {
slots: {
default: '
body
',
header: 'header
',
footer: 'footer
'
}
})
expect(wrapper.is('.ibps-container-card')).toBeTruthy()
expect(wrapper.contains('.ibps-container-card__header')).toBeTruthy()
expect(wrapper.contains('.ibps-container-card__body')).toBeTruthy()
expect(wrapper.contains('.ibps-container-card__body-card')).toBeTruthy()
expect(wrapper.contains('.ibps-container-card__footer')).toBeTruthy()
})
// props
it('has props', () => {
const wrapper = mount(IbpsContainerCard, {
propsData: {
scrollDelay: 30
}
})
expect(wrapper.props().scrollDelay).toEqual(30)
})
// 渲染slot
it('has one or more slots', () => {
const wrapper = mount(IbpsContainerCard, {
slots: {
default: 'body
',
header: 'header
',
footer: 'footer
'
}
})
expect(wrapper.text()).toMatch('header')
expect(wrapper.text()).toMatch('body')
expect(wrapper.text()).toMatch('footer')
})
})