UNPKG

bootstrap-vue

Version:

BootstrapVue, with over 40 plugins and more than 80 custom components, custom directives, and over 300 icons, provides one of the most comprehensive implementations of Bootstrap v4 components and grid system for Vue.js. With extensive and automated WAI-AR

176 lines (159 loc) 4.17 kB
import { mount } from '@vue/test-utils' import { BBreadcrumb } from './breadcrumb' describe('breadcrumb', () => { it('should have expected default structure', async () => { const wrapper = mount(BBreadcrumb) expect(wrapper.is('ol')).toBe(true) expect(wrapper.classes()).toContain('breadcrumb') expect(wrapper.classes().length).toBe(1) expect(wrapper.text()).toBe('') }) it('should render default slot when no items provided', async () => { const wrapper = mount(BBreadcrumb, { slots: { default: 'foobar' } }) expect(wrapper.is('ol')).toBe(true) expect(wrapper.classes()).toContain('breadcrumb') expect(wrapper.classes().length).toBe(1) expect(wrapper.text()).toBe('foobar') }) it('should accept items', () => { const wrapper = mount(BBreadcrumb, { propsData: { items: [ { text: 'Home', href: '/' }, { text: 'Admin', to: '/admin', active: false }, { html: '<b>Manage</b>', href: '/admin/manage' }, // Test with non object 'Library' ] } }) expect(wrapper.is('ol')).toBe(true) expect(wrapper.classes()).toContain('breadcrumb') expect(wrapper.classes().length).toBe(1) expect(wrapper.findAll('li').length).toBe(4) expect(wrapper.findAll('li.breadcrumb-item').length).toBe(4) const $lis = wrapper.findAll('li') // HREF testing expect( $lis .at(0) .find('a') .exists() ).toBe(true) expect( $lis .at(0) .find('a') .attributes('href') ).toBe('/') expect($lis.at(0).text()).toBe('Home') expect( $lis .at(1) .find('a') .exists() ).toBe(true) expect( $lis .at(1) .find('a') .attributes('href') ).toBe('/admin') expect($lis.at(1).text()).toBe('Admin') expect( $lis .at(2) .find('a') .exists() ).toBe(true) expect( $lis .at(2) .find('a') .attributes('href') ).toBe('/admin/manage') expect($lis.at(2).text()).toBe('Manage') // Last item should have active state expect($lis.at(3).classes()).toContain('active') expect( $lis .at(3) .find('span') .exists() ).toBe(true) expect($lis.at(3).text()).toBe('Library') }) it('should apply active class to active item', async () => { const wrapper = mount(BBreadcrumb, { propsData: { items: [ { text: 'Home', href: '/' }, { text: 'Admin', to: '/admin', active: true }, { html: '<b>Manage</b>', href: '/admin/manage' }, { text: 'Library', href: '/admin/manage/library' } ] } }) expect(wrapper.is('ol')).toBe(true) expect(wrapper.classes()).toContain('breadcrumb') expect(wrapper.classes().length).toBe(1) expect(wrapper.findAll('li').length).toBe(4) expect(wrapper.findAll('li.breadcrumb-item').length).toBe(4) const $lis = wrapper.findAll('li') // HREF testing expect( $lis .at(0) .find('a') .exists() ).toBe(true) expect( $lis .at(0) .find('a') .attributes('href') ).toBe('/') expect($lis.at(0).text()).toBe('Home') // This one should be a span/active expect( $lis .at(1) .find('span') .exists() ).toBe(true) expect($lis.at(1).classes()).toContain('active') expect($lis.at(1).text()).toBe('Admin') expect( $lis .at(2) .find('a') .exists() ).toBe(true) expect( $lis .at(2) .find('a') .attributes('href') ).toBe('/admin/manage') expect($lis.at(2).text()).toBe('Manage') // Last item should have active state expect($lis.at(3).classes()).not.toContain('active') expect( $lis .at(3) .find('a') .exists() ).toBe(true) expect( $lis .at(3) .find('a') .attributes('href') ).toBe('/admin/manage/library') expect($lis.at(3).text()).toBe('Library') }) })