debian-mirror-gitlab/spec/frontend/environments/environment_pin_spec.js

46 lines
1.2 KiB
JavaScript
Raw Normal View History

2020-11-24 15:15:51 +05:30
import { GlButton, GlIcon } from '@gitlab/ui';
2021-03-11 19:13:27 +05:30
import { shallowMount } from '@vue/test-utils';
2020-03-13 15:44:24 +05:30
import PinComponent from '~/environments/components/environment_pin.vue';
2021-03-11 19:13:27 +05:30
import eventHub from '~/environments/event_hub';
2020-03-13 15:44:24 +05:30
describe('Pin Component', () => {
let wrapper;
const factory = (options = {}) => {
// This destroys any wrappers created before a nested call to factory reassigns it
if (wrapper && wrapper.destroy) {
wrapper.destroy();
}
wrapper = shallowMount(PinComponent, {
...options,
});
};
const autoStopUrl = '/root/auto-stop-env-test/-/environments/38/cancel_auto_stop';
beforeEach(() => {
factory({
propsData: {
autoStopUrl,
},
});
});
afterEach(() => {
wrapper.destroy();
});
it('should render the component with thumbtack icon', () => {
2020-11-24 15:15:51 +05:30
expect(wrapper.find(GlIcon).props('name')).toBe('thumbtack');
2020-03-13 15:44:24 +05:30
});
it('should emit onPinClick when clicked', () => {
const eventHubSpy = jest.spyOn(eventHub, '$emit');
2020-11-24 15:15:51 +05:30
const button = wrapper.find(GlButton);
2020-03-13 15:44:24 +05:30
button.vm.$emit('click');
expect(eventHubSpy).toHaveBeenCalledWith('cancelAutoStop', autoStopUrl);
});
});