Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mr_widget_not_allowed_spec.js « states « components « vue_merge_request_widget « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c6e7198c67810e2abeed50b66164d72cc306928b (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 { shallowMount } from '@vue/test-utils';
import notAllowedComponent from '~/vue_merge_request_widget/components/states/mr_widget_not_allowed.vue';
import StatusIcon from '~/vue_merge_request_widget/components/mr_widget_status_icon.vue';

describe('MRWidgetNotAllowed', () => {
  let wrapper;

  beforeEach(() => {
    wrapper = shallowMount(notAllowedComponent);
  });

  afterEach(() => {
    wrapper.destroy();
    wrapper = null;
  });

  it('renders success icon', () => {
    expect(wrapper.findComponent(StatusIcon).exists()).toBe(true);
    expect(wrapper.findComponent(StatusIcon).props().status).toBe('success');
  });

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