summaryrefslogtreecommitdiff
path: root/spec/javascripts/vue_mr_widget/components/states/mr_widget_not_allowed_spec.js
blob: 9f8b96c118b80d6d8ba5af0fb39b1283445708f0 (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
import Vue from 'vue';
import notAllowedComponent from '~/vue_merge_request_widget/components/states/mr_widget_not_allowed.vue';
import mountComponent from 'spec/helpers/vue_mount_component_helper';

describe('MRWidgetNotAllowed', () => {
  let vm;
  beforeEach(() => {
    const Component = Vue.extend(notAllowedComponent);
    vm = mountComponent(Component);
  });

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

  it('renders success icon', () => {
    expect(vm.$el.querySelector('.ci-status-icon-success')).not.toBe(null);
  });

  it('renders informative text', () => {
    expect(vm.$el.innerText).toContain('Ready to be merged automatically.');
    expect(vm.$el.innerText).toContain('Ask someone with write access to this repository to merge this request');
  });
});