summaryrefslogtreecommitdiff
path: root/spec/javascripts/diffs/components/inline_diff_table_row_spec.js
blob: 97926f6625ef81953e4206a245cde85990aabc4d (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
38
39
40
41
42
import Vue from 'vue';
import store from '~/mr_notes/stores';
import InlineDiffTableRow from '~/diffs/components/inline_diff_table_row.vue';
import { createComponentWithStore } from 'spec/helpers/vue_mount_component_helper';
import diffFileMockData from '../mock_data/diff_file';

describe('InlineDiffTableRow', () => {
  let vm;
  const thisLine = diffFileMockData.highlighted_diff_lines[0];

  beforeEach(() => {
    vm = createComponentWithStore(Vue.extend(InlineDiffTableRow), store, {
      line: thisLine,
      fileHash: diffFileMockData.file_hash,
      contextLinesPath: 'contextLinesPath',
      isHighlighted: false,
    }).$mount();
  });

  it('does not add hll class to line content when line does not match highlighted row', done => {
    vm.$nextTick()
      .then(() => {
        expect(vm.$el.querySelector('.line_content').classList).not.toContain('hll');
      })
      .then(done)
      .catch(done.fail);
  });

  it('adds hll class to lineContent when line is the highlighted row', done => {
    vm.$nextTick()
      .then(() => {
        vm.$store.state.diffs.highlightedRow = thisLine.line_code;

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