UNPKG

@coreui/vue

Version:

UI Components Library for Vue.js

64 lines (55 loc) 1.54 kB
import { mount } from '@vue/test-utils' import { CFooter as Component } from '../../../index' const ComponentName = 'CFooter' const defaultWrapper = mount(Component, { propsData: {}, slots: { default: 'Default slot', }, }) const customWrapper = mount(Component, { propsData: { position: 'fixed', }, slots: { default: 'Default slot', }, }) const customWrapperTwo = mount(Component, { propsData: { as: 'footer', }, slots: { default: 'Default slot', }, }) describe(`Loads and display ${ComponentName} component`, () => { it('has a name', () => { expect(Component.name).toMatch(ComponentName) }) it('renders correctly', () => { expect(defaultWrapper.html()).toMatchSnapshot() }) it('contain slots and classes', () => { expect(defaultWrapper.text()).toContain('Default slot') expect(defaultWrapper.classes('footer')).toBe(true) }) }) describe(`Customize ${ComponentName} component`, () => { it('renders correctly', () => { expect(customWrapper.html()).toMatchSnapshot() }) it('contain slots and classes', () => { expect(customWrapper.text()).toContain('Default slot') expect(customWrapper.classes('footer')).toBe(true) expect(customWrapper.classes('footer-fixed')).toBe(true) }) }) describe(`Customize (number two) ${ComponentName} component`, () => { it('renders correctly', () => { expect(customWrapperTwo.html()).toMatchSnapshot() }) it('tag name is custom', () => { expect(customWrapperTwo.element.tagName).toBe('FOOTER') }) })