%PDF- %PDF-
Direktori : /home/ugotscom/3vfm3/node_modules/bootstrap-vue/src/components/card/ |
Current File : /home/ugotscom/3vfm3/node_modules/bootstrap-vue/src/components/card/card-title.spec.js |
import { mount } from '@vue/test-utils' import { BCardTitle } from './card-title' describe('card-title', () => { it('default has tag "h4"', async () => { const wrapper = mount(BCardTitle) expect(wrapper.element.tagName).toBe('H4') wrapper.destroy() }) it('default has class "card-title"', async () => { const wrapper = mount(BCardTitle) expect(wrapper.classes()).toContain('card-title') expect(wrapper.classes().length).toBe(1) wrapper.destroy() }) it('renders custom tag', async () => { const wrapper = mount(BCardTitle, { context: { props: { titleTag: 'div' } } }) expect(wrapper.element.tagName).toBe('DIV') wrapper.destroy() }) it('has content from default slot', async () => { const wrapper = mount(BCardTitle, { slots: { default: 'bar' } }) expect(wrapper.text()).toContain('bar') wrapper.destroy() }) })