summaryrefslogtreecommitdiff
path: root/spec/javascripts/vue_mr_widget/components/mr_widget_merge_help_spec.js
blob: 4da4fc82c264bd88b6d9cc3b4c19887aa9c0824c (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
import Vue from 'vue';
import mergeHelpComponent from '~/vue_merge_request_widget/components/mr_widget_merge_help';

const props = {
  missingBranch: 'this-is-not-the-branch-you-are-looking-for',
};
const text = `If the ${props.missingBranch} branch exists in your local repository`;

const createComponent = () => {
  const Component = Vue.extend(mergeHelpComponent);
  return new Component({
    el: document.createElement('div'),
    propsData: props,
  });
};

describe('MRWidgetMergeHelp', () => {
  describe('props', () => {
    it('should have props', () => {
      const { missingBranch } = mergeHelpComponent.props;
      const MissingBranchTypeClass = missingBranch.type;

      expect(new MissingBranchTypeClass() instanceof String).toBeTruthy();
      expect(missingBranch.required).toBeFalsy();
      expect(missingBranch.default).toEqual('');
    });
  });

  describe('template', () => {
    let vm;
    let el;

    beforeEach(() => {
      vm = createComponent();
      el = vm.$el;
    });

    it('should have the correct elements', () => {
      expect(el.classList.contains('mr-widget-help')).toBeTruthy();
      expect(el.textContent).toContain(text);
    });

    it('should not show missing branch name if missingBranch props is not provided', (done) => {
      vm.missingBranch = null;
      Vue.nextTick(() => {
        expect(el.textContent).not.toContain(text);
        done();
      });
    });
  });
});