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