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

confirm_modal_spec.js « components « deploy_keys « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 42cc2b377a7e2bde644e190cec570df45089fe86 (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 { GlModal } from '@gitlab/ui';
import { mount } from '@vue/test-utils';
import { extendedWrapper } from 'helpers/vue_test_utils_helper';
import ConfirmModal from '~/deploy_keys/components/confirm_modal.vue';

describe('~/deploy_keys/components/confirm_modal.vue', () => {
  let wrapper;
  let modal;

  beforeEach(() => {
    wrapper = mount(ConfirmModal, { propsData: { modalId: 'test', visible: true } });
    modal = extendedWrapper(wrapper.findComponent(GlModal));
  });

  it('emits a remove event if the primary button is clicked', () => {
    modal.findByText('Remove deploy key').trigger('click');
    expect(wrapper.emitted('remove')).toEqual([[]]);
  });

  it('emits a cancel event if the secondary button is clicked', () => {
    modal.findByText('Cancel').trigger('click');
    expect(wrapper.emitted('cancel')).toEqual([[]]);
  });

  it('displays the warning about removing the deploy key', () => {
    expect(modal.text()).toContain('Are you sure you want to remove this deploy key?');
  });
});