debian-mirror-gitlab/spec/frontend/add_context_commits_modal/components/review_tab_container_spec.js

52 lines
1.5 KiB
JavaScript
Raw Normal View History

2020-10-24 23:57:45 +05:30
import { GlLoadingIcon } from '@gitlab/ui';
2021-03-11 19:13:27 +05:30
import { shallowMount } from '@vue/test-utils';
2021-11-18 22:05:49 +05:30
import getDiffWithCommit from 'test_fixtures/merge_request_diffs/with_commit.json';
2020-10-24 23:57:45 +05:30
import ReviewTabContainer from '~/add_context_commits_modal/components/review_tab_container.vue';
import CommitItem from '~/diffs/components/commit_item.vue';
describe('ReviewTabContainer', () => {
let wrapper;
2021-11-18 22:05:49 +05:30
const { commit } = getDiffWithCommit;
2020-10-24 23:57:45 +05:30
const createWrapper = (props = {}) => {
wrapper = shallowMount(ReviewTabContainer, {
propsData: {
tab: 'commits',
isLoading: false,
loadingError: false,
loadingFailedText: 'Failed to load commits',
commits: [],
selectedRow: [],
...props,
},
});
};
beforeEach(() => {
createWrapper();
});
afterEach(() => {
wrapper.destroy();
});
it('shows loading icon when commits are being loaded', () => {
createWrapper({ isLoading: true });
expect(wrapper.find(GlLoadingIcon).exists()).toBe(true);
});
it('shows loading error text when API call fails', () => {
createWrapper({ loadingError: true });
expect(wrapper.text()).toContain('Failed to load commits');
});
it('shows "No commits present here" when commits are not present', () => {
expect(wrapper.text()).toContain('No commits present here');
});
it('renders all passed commits as list', () => {
createWrapper({ commits: [commit] });
expect(wrapper.findAll(CommitItem).length).toBe(1);
});
});