2018-11-08 19:23:39 +05:30
|
|
|
import Vue from 'vue';
|
|
|
|
import ParallelDiffView from '~/diffs/components/parallel_diff_view.vue';
|
|
|
|
import store from '~/mr_notes/stores';
|
|
|
|
import * as constants from '~/diffs/constants';
|
|
|
|
import { createComponentWithStore } from 'spec/helpers/vue_mount_component_helper';
|
|
|
|
import diffFileMockData from '../mock_data/diff_file';
|
|
|
|
|
|
|
|
describe('ParallelDiffView', () => {
|
|
|
|
let component;
|
|
|
|
const getDiffFileMock = () => Object.assign({}, diffFileMockData);
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
const diffFile = getDiffFileMock();
|
|
|
|
|
|
|
|
component = createComponentWithStore(Vue.extend(ParallelDiffView), store, {
|
|
|
|
diffFile,
|
|
|
|
diffLines: diffFile.parallelDiffLines,
|
|
|
|
}).$mount();
|
|
|
|
});
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
describe('assigned', () => {
|
|
|
|
describe('diffLines', () => {
|
2018-11-08 19:23:39 +05:30
|
|
|
it('should normalize lines for empty cells', () => {
|
2018-11-20 20:47:30 +05:30
|
|
|
expect(component.diffLines[0].left.type).toEqual(constants.EMPTY_CELL_TYPE);
|
|
|
|
expect(component.diffLines[1].left.type).toEqual(constants.EMPTY_CELL_TYPE);
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|