41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
|
import $ from 'jquery';
|
||
|
import { shallowMount } from '@vue/test-utils';
|
||
|
import StopComponent from '~/environments/components/environment_stop.vue';
|
||
|
import LoadingButton from '~/vue_shared/components/loading_button.vue';
|
||
|
import eventHub from '~/environments/event_hub';
|
||
|
|
||
|
$.fn.tooltip = () => {};
|
||
|
|
||
|
describe('Stop Component', () => {
|
||
|
let wrapper;
|
||
|
|
||
|
const createWrapper = () => {
|
||
|
wrapper = shallowMount(StopComponent, {
|
||
|
sync: false,
|
||
|
attachToDocument: true,
|
||
|
propsData: {
|
||
|
environment: {},
|
||
|
},
|
||
|
});
|
||
|
};
|
||
|
|
||
|
const findButton = () => wrapper.find(LoadingButton);
|
||
|
|
||
|
beforeEach(() => {
|
||
|
jest.spyOn(window, 'confirm');
|
||
|
|
||
|
createWrapper();
|
||
|
});
|
||
|
|
||
|
it('should render a button to stop the environment', () => {
|
||
|
expect(findButton().exists()).toBe(true);
|
||
|
expect(wrapper.attributes('data-original-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);
|
||
|
});
|
||
|
});
|