![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/vreg/node_modules/bootstrap-vue/src/components/card/ |
import { mount } from '@vue/test-utils' import { BCardSubTitle } from './card-sub-title' describe('card-sub-title', () => { it('default has tag "h6"', async () => { const wrapper = mount(BCardSubTitle) expect(wrapper.element.tagName).toBe('H6') wrapper.destroy() }) it('default has class "card-subtitle" and "text-muted"', async () => { const wrapper = mount(BCardSubTitle) expect(wrapper.classes()).toContain('card-subtitle') expect(wrapper.classes()).toContain('text-muted') expect(wrapper.classes().length).toBe(2) wrapper.destroy() }) it('renders custom tag', async () => { const wrapper = mount(BCardSubTitle, { context: { props: { subTitleTag: 'div' } } }) expect(wrapper.element.tagName).toBe('DIV') wrapper.destroy() }) it('accepts subTitleTextVariant value', async () => { const wrapper = mount(BCardSubTitle, { context: { props: { subTitleTextVariant: 'info' } } }) expect(wrapper.classes()).toContain('card-subtitle') expect(wrapper.classes()).toContain('text-info') expect(wrapper.classes().length).toBe(2) wrapper.destroy() }) it('has content from default slot', async () => { const wrapper = mount(BCardSubTitle, { slots: { default: 'foobar' } }) expect(wrapper.text()).toContain('foobar') wrapper.destroy() }) })