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

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',
    );
  });
});