summaryrefslogtreecommitdiff
path: root/spec/frontend/vue_shared/components/runner_instructions/runner_instructions_spec.js
blob: 23f8d6afcb572c112bd4eeec3ed2399551a9aebb (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
import { shallowMount } from '@vue/test-utils';
import { nextTick } from 'vue';
import { extendedWrapper } from 'helpers/vue_test_utils_helper';
import RunnerInstructions from '~/vue_shared/components/runner_instructions/runner_instructions.vue';
import RunnerInstructionsModal from '~/vue_shared/components/runner_instructions/runner_instructions_modal.vue';

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

  const findModalButton = () => wrapper.findByTestId('show-modal-button');
  const findModal = () => wrapper.findComponent(RunnerInstructionsModal);

  const createComponent = () => {
    wrapper = extendedWrapper(shallowMount(RunnerInstructions));
  };

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

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

  it('should show the "Show Runner installation instructions" button', () => {
    expect(findModalButton().exists()).toBe(true);
    expect(findModalButton().text()).toBe('Show Runner installation instructions');
  });

  it('should not render the modal once mounted', () => {
    expect(findModal().exists()).toBe(false);
  });

  it('should render the modal once clicked', async () => {
    findModalButton().vm.$emit('click');

    await nextTick();

    expect(findModal().exists()).toBe(true);
  });
});