![]() 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/navbar/ |
import { mount } from '@vue/test-utils' import { BNavbarBrand } from './navbar-brand' describe('navbar-brand', () => { it('default has tag "div"', async () => { const wrapper = mount(BNavbarBrand) expect(wrapper.element.tagName).toBe('DIV') wrapper.destroy() }) it('default has class "navbar-brand"', async () => { const wrapper = mount(BNavbarBrand) expect(wrapper.classes()).toContain('navbar-brand') expect(wrapper.classes().length).toBe(1) wrapper.destroy() }) it('accepts custom tag', async () => { const wrapper = mount(BNavbarBrand, { context: { props: { tag: 'span' } } }) expect(wrapper.element.tagName).toBe('SPAN') expect(wrapper.classes()).toContain('navbar-brand') expect(wrapper.classes().length).toBe(1) wrapper.destroy() }) it('renders link when href set', async () => { const wrapper = mount(BNavbarBrand, { context: { props: { href: '#foo' } } }) expect(wrapper.element.tagName).toBe('A') expect(wrapper.attributes('href')).toBe('#foo') expect(wrapper.classes()).toContain('navbar-brand') expect(wrapper.classes().length).toBe(1) wrapper.destroy() }) })