Breadcrumb test added
parent
ed76c70d54
commit
23bcb44594
|
@ -0,0 +1,26 @@
|
||||||
|
import { mount } from '@vue/test-utils';
|
||||||
|
import Breadcrumb from './Breadcrumb.vue';
|
||||||
|
|
||||||
|
describe('Breadcrumb', () => {
|
||||||
|
it('should exist', () => {
|
||||||
|
const wrapper = mount(Breadcrumb, {
|
||||||
|
global: {
|
||||||
|
stubs: ['router-link']
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
home: {icon: 'pi pi-home', to: '/'},
|
||||||
|
model: [
|
||||||
|
{label: 'Computer'},
|
||||||
|
{label: 'Notebook'},
|
||||||
|
{label: 'Accessories'},
|
||||||
|
{label: 'Backpacks'},
|
||||||
|
{label: 'Item'}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(wrapper.find('.p-breadcrumb.p-component').exists()).toBe(true);
|
||||||
|
expect(wrapper.findAll('.p-breadcrumb-chevron').length).toBe(5);
|
||||||
|
expect(wrapper.findAll('.p-menuitem-text').length).toBe(5);
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in New Issue