33 lines
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
import { shallowMount } from '@vue/test-utils';
|
|
import DiffStats from '~/diffs/components/diff_stats.vue';
|
|
|
|
describe('diff_stats', () => {
|
|
it('does not render a group if diffFileLengths is not passed in', () => {
|
|
const wrapper = shallowMount(DiffStats, {
|
|
propsData: {
|
|
addedLines: 1,
|
|
removedLines: 2,
|
|
},
|
|
});
|
|
const groups = wrapper.findAll('.diff-stats-group');
|
|
|
|
expect(groups.length).toBe(2);
|
|
});
|
|
|
|
it('shows amount of files changed, lines added and lines removed when passed all props', () => {
|
|
const wrapper = shallowMount(DiffStats, {
|
|
propsData: {
|
|
addedLines: 100,
|
|
removedLines: 200,
|
|
diffFilesLength: 300,
|
|
},
|
|
});
|
|
const additions = wrapper.find('icon-stub[name="file-addition"]').element.parentNode;
|
|
const deletions = wrapper.find('icon-stub[name="file-deletion"]').element.parentNode;
|
|
const filesChanged = wrapper.find('icon-stub[name="doc-code"]').element.parentNode;
|
|
|
|
expect(additions.textContent).toContain('100');
|
|
expect(deletions.textContent).toContain('200');
|
|
expect(filesChanged.textContent).toContain('300');
|
|
});
|
|
});
|