30 lines
990 B
JavaScript
30 lines
990 B
JavaScript
|
import { mount } from '@vue/test-utils';
|
||
|
import Breadcrumb from './Breadcrumb.vue';
|
||
|
|
||
|
describe('Breadcrumb', () => {
|
||
|
it('should exist', () => {
|
||
|
const wrapper = mount(Breadcrumb, {
|
||
|
global: {
|
||
|
stubs: {
|
||
|
'router-link': true
|
||
|
},
|
||
|
mocks: {
|
||
|
$router: {
|
||
|
currentRoute: {
|
||
|
path: vi.fn()
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
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-menuitem-separator').length).toBe(5);
|
||
|
expect(wrapper.findAll('.p-menuitem-text').length).toBe(5);
|
||
|
});
|
||
|
});
|