46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
import { shallowMountExtended } from 'helpers/vue_test_utils_helper';
|
|
import { __ } from '~/locale';
|
|
import Counter from '~/super_sidebar/components/counter.vue';
|
|
import UserBar from '~/super_sidebar/components/user_bar.vue';
|
|
import { sidebarData } from '../mock_data';
|
|
|
|
describe('UserBar component', () => {
|
|
let wrapper;
|
|
|
|
const findCounter = (at) => wrapper.findAllComponents(Counter).at(at);
|
|
|
|
afterEach(() => {
|
|
wrapper.destroy();
|
|
});
|
|
|
|
const createWrapper = (props = {}) => {
|
|
wrapper = shallowMountExtended(UserBar, {
|
|
propsData: {
|
|
sidebarData,
|
|
...props,
|
|
},
|
|
provide: {
|
|
rootPath: '/',
|
|
toggleNewNavEndpoint: '/-/profile/preferences',
|
|
},
|
|
});
|
|
};
|
|
|
|
describe('default', () => {
|
|
beforeEach(() => {
|
|
createWrapper();
|
|
});
|
|
|
|
it('renders issues counter', () => {
|
|
expect(findCounter(0).props('count')).toBe(sidebarData.assigned_open_issues_count);
|
|
expect(findCounter(0).props('href')).toBe(sidebarData.issues_dashboard_path);
|
|
expect(findCounter(0).props('label')).toBe(__('Issues'));
|
|
});
|
|
|
|
it('renders todos counter', () => {
|
|
expect(findCounter(2).props('count')).toBe(sidebarData.todos_pending_count);
|
|
expect(findCounter(2).props('href')).toBe('/dashboard/todos');
|
|
expect(findCounter(2).props('label')).toBe(__('To-Do list'));
|
|
});
|
|
});
|
|
});
|