summaryrefslogtreecommitdiff
path: root/spec/javascripts/diffs/components/diff_table_cell_spec.js
blob: 170e661beeaee408cd41fb7487d0dfb311a22311 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import Vue from 'vue';
import store from '~/mr_notes/stores';
import DiffTableCell from '~/diffs/components/diff_table_cell.vue';
import { createComponentWithStore } from 'spec/helpers/vue_mount_component_helper';
import diffFileMockData from '../mock_data/diff_file';

describe('DiffTableCell', () => {
  const createComponent = options =>
    createComponentWithStore(Vue.extend(DiffTableCell), store, {
      line: diffFileMockData.highlighted_diff_lines[0],
      fileHash: diffFileMockData.file_hash,
      contextLinesPath: 'contextLinesPath',
      ...options,
    }).$mount();

  it('does not highlight row when isHighlighted prop is false', done => {
    const vm = createComponent({ isHighlighted: false });

    vm.$nextTick()
      .then(() => {
        expect(vm.$el.classList).not.toContain('hll');
      })
      .then(done)
      .catch(done.fail);
  });

  it('highlights row when isHighlighted prop is true', done => {
    const vm = createComponent({ isHighlighted: true });

    vm.$nextTick()
      .then(() => {
        expect(vm.$el.classList).toContain('hll');
      })
      .then(done)
      .catch(done.fail);
  });
});