2018-12-05 23:21:45 +05:30
|
|
|
import Vue from 'vue';
|
|
|
|
import mountComponent from 'spec/helpers/vue_mount_component_helper';
|
|
|
|
import CommitWidget from '~/diffs/components/commit_widget.vue';
|
|
|
|
import getDiffWithCommit from '../mock_data/diff_with_commit';
|
|
|
|
|
|
|
|
describe('diffs/components/commit_widget', () => {
|
|
|
|
const Component = Vue.extend(CommitWidget);
|
|
|
|
const { commit } = getDiffWithCommit();
|
|
|
|
|
|
|
|
let vm;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
vm = mountComponent(Component, {
|
|
|
|
commit: getDiffWithCommit().commit,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders commit item', () => {
|
|
|
|
const commitElement = vm.$el.querySelector('li.commit');
|
|
|
|
|
|
|
|
expect(commitElement).not.toBeNull();
|
2019-02-15 15:39:39 +05:30
|
|
|
expect(commitElement).toContainText(commit.short_id);
|
2018-12-05 23:21:45 +05:30
|
|
|
});
|
|
|
|
});
|