summaryrefslogtreecommitdiff
path: root/spec/frontend/environments/environment_stop_spec.js
blob: dff444b79f3c16d981b313c0c821196a68ff599e (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
import { GlButton } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import $ from 'jquery';
import StopComponent from '~/environments/components/environment_stop.vue';
import eventHub from '~/environments/event_hub';

$.fn.tooltip = () => {};

describe('Stop Component', () => {
  let wrapper;

  const createWrapper = () => {
    wrapper = shallowMount(StopComponent, {
      propsData: {
        environment: {},
      },
    });
  };

  const findButton = () => wrapper.find(GlButton);

  beforeEach(() => {
    jest.spyOn(window, 'confirm');

    createWrapper();
  });

  it('should render a button to stop the environment', () => {
    expect(findButton().exists()).toBe(true);
    expect(wrapper.attributes('title')).toEqual('Stop environment');
  });

  it('emits requestStopEnvironment in the event hub when button is clicked', () => {
    jest.spyOn(eventHub, '$emit');
    findButton().vm.$emit('click');
    expect(eventHub.$emit).toHaveBeenCalledWith('requestStopEnvironment', wrapper.vm.environment);
  });
});