234563ba30
This caused many pain points when working with it. Part of the data was camel cased the other snake case. Other parts where snake case & then getting converted in components, this conversion has the potential for leaking memory. This changes that & makes it consistent with what it returned from the API, snake case.
29 lines
999 B
JavaScript
29 lines
999 B
JavaScript
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.parallel_diff_lines,
|
|
}).$mount();
|
|
});
|
|
|
|
describe('assigned', () => {
|
|
describe('diffLines', () => {
|
|
it('should normalize lines for empty cells', () => {
|
|
expect(component.diffLines[0].left.type).toEqual(constants.EMPTY_CELL_TYPE);
|
|
expect(component.diffLines[1].left.type).toEqual(constants.EMPTY_CELL_TYPE);
|
|
});
|
|
});
|
|
});
|
|
});
|