summaryrefslogtreecommitdiff
path: root/spec/frontend/vue_mr_widget/components/states/mr_widget_nothing_to_merge_spec.js
blob: c7c0b69425d0a4b599af41d47fcd6d8ee3063403 (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
import Vue, { nextTick } from 'vue';
import NothingToMerge from '~/vue_merge_request_widget/components/states/nothing_to_merge.vue';

describe('NothingToMerge', () => {
  describe('template', () => {
    const Component = Vue.extend(NothingToMerge);
    const newBlobPath = '/foo';
    const vm = new Component({
      el: document.createElement('div'),
      propsData: {
        mr: { newBlobPath },
      },
    });

    it('should have correct elements', () => {
      expect(vm.$el.classList.contains('mr-widget-body')).toBeTruthy();
      expect(vm.$el.querySelector('[data-testid="createFileButton"]').href).toContain(newBlobPath);
      expect(vm.$el.innerText).toContain('Use merge requests to propose changes to your project');
    });

    it('should not show new blob link if there is no link available', () => {
      vm.mr.newBlobPath = null;
      nextTick(() => {
        expect(vm.$el.querySelector('[data-testid="createFileButton"]')).toEqual(null);
      });
    });
  });
});