summaryrefslogtreecommitdiff
path: root/spec/javascripts/vue_shared/components/changed_file_icon_spec.js
blob: 634ba8403d59b5f4a47c6bbfcd896aad94776909 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import Vue from 'vue';
import changedFileIcon from '~/vue_shared/components/changed_file_icon.vue';
import createComponent from 'spec/helpers/vue_mount_component_helper';

describe('Changed file icon', () => {
  let vm;

  function factory(props = {}) {
    const component = Vue.extend(changedFileIcon);

    vm = createComponent(component, {
      ...props,
      file: {
        tempFile: false,
        changed: true,
      },
    });
  }

  afterEach(() => {
    vm.$destroy();
  });

  it('centers icon', () => {
    factory({
      isCentered: true,
    });

    expect(vm.$el.classList).toContain('ml-auto');
  });

  describe('changedIcon', () => {
    it('equals file-modified when not a temp file and has changes', () => {
      factory();

      expect(vm.changedIcon).toBe('file-modified');
    });

    it('equals file-addition when a temp file', () => {
      factory();

      vm.file.tempFile = true;

      expect(vm.changedIcon).toBe('file-addition');
    });
  });

  describe('changedIconClass', () => {
    it('includes file-modified when not a temp file', () => {
      factory();

      expect(vm.changedIconClass).toContain('file-modified');
    });

    it('includes file-addition when a temp file', () => {
      factory();

      vm.file.tempFile = true;

      expect(vm.changedIconClass).toContain('file-addition');
    });
  });
});