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

auto_dev_ops_enabled_alert_spec.js « components « security_configuration « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 22f45a92f702cf1b0b47f7a41871be92c1bf763d (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
import { GlAlert } from '@gitlab/ui';
import { mount } from '@vue/test-utils';
import AutoDevopsEnabledAlert from '~/security_configuration/components/auto_dev_ops_enabled_alert.vue';

const autoDevopsHelpPagePath = '/autoDevopsHelpPagePath';

describe('AutoDevopsEnabledAlert component', () => {
  let wrapper;

  const createComponent = () => {
    wrapper = mount(AutoDevopsEnabledAlert, {
      provide: {
        autoDevopsHelpPagePath,
      },
    });
  };

  const findAlert = () => wrapper.findComponent(GlAlert);

  beforeEach(() => {
    createComponent();
  });

  it('contains correct body text', () => {
    expect(wrapper.text()).toMatchInterpolatedText(AutoDevopsEnabledAlert.i18n.body);
  });

  it('renders the link correctly', () => {
    const link = wrapper.find('a[href]');

    expect(link.attributes('href')).toBe(autoDevopsHelpPagePath);
    expect(link.text()).toBe('Auto DevOps');
  });

  it('bubbles up dismiss events from the GlAlert', () => {
    expect(wrapper.emitted('dismiss')).toBe(undefined);

    findAlert().vm.$emit('dismiss');

    expect(wrapper.emitted('dismiss')).toEqual([[]]);
  });
});