34 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
import Vue from 'vue';
 | 
						|
import { createStore } from '~/mr_notes/stores';
 | 
						|
import { createComponentWithStore } from 'helpers/vue_mount_component_helper';
 | 
						|
import ParallelDiffView from '~/diffs/components/parallel_diff_view.vue';
 | 
						|
import * as constants from '~/diffs/constants';
 | 
						|
import diffFileMockData from '../mock_data/diff_file';
 | 
						|
 | 
						|
describe('ParallelDiffView', () => {
 | 
						|
  let component;
 | 
						|
  const getDiffFileMock = () => ({ ...diffFileMockData });
 | 
						|
 | 
						|
  beforeEach(() => {
 | 
						|
    const diffFile = getDiffFileMock();
 | 
						|
 | 
						|
    component = createComponentWithStore(Vue.extend(ParallelDiffView), createStore(), {
 | 
						|
      diffFile,
 | 
						|
      diffLines: diffFile.parallel_diff_lines,
 | 
						|
    }).$mount();
 | 
						|
  });
 | 
						|
 | 
						|
  afterEach(() => {
 | 
						|
    component.$destroy();
 | 
						|
  });
 | 
						|
 | 
						|
  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);
 | 
						|
      });
 | 
						|
    });
 | 
						|
  });
 | 
						|
});
 |