debian-mirror-gitlab/spec/javascripts/pipelines/graph/action_component_spec.js

48 lines
1.3 KiB
JavaScript
Raw Normal View History

2017-08-17 22:00:37 +05:30
import Vue from 'vue';
import actionComponent from '~/pipelines/components/graph/action_component.vue';
2018-05-09 12:01:36 +05:30
import eventHub from '~/pipelines/event_hub';
import mountComponent from '../../helpers/vue_mount_component_helper';
2017-08-17 22:00:37 +05:30
describe('pipeline graph action component', () => {
let component;
2017-09-10 17:25:29 +05:30
beforeEach((done) => {
2017-08-17 22:00:37 +05:30
const ActionComponent = Vue.extend(actionComponent);
2018-05-09 12:01:36 +05:30
component = mountComponent(ActionComponent, {
tooltipText: 'bar',
link: 'foo',
actionIcon: 'cancel',
});
2017-09-10 17:25:29 +05:30
Vue.nextTick(done);
2017-08-17 22:00:37 +05:30
});
2018-05-09 12:01:36 +05:30
afterEach(() => {
component.$destroy();
});
it('should emit an event with the provided link', () => {
eventHub.$on('graphAction', (link) => {
expect(link).toEqual('foo');
});
2017-08-17 22:00:37 +05:30
});
it('should render the provided title as a bootstrap tooltip', () => {
expect(component.$el.getAttribute('data-original-title')).toEqual('bar');
});
it('should update bootstrap tooltip when title changes', (done) => {
component.tooltipText = 'changed';
2017-09-10 17:25:29 +05:30
setTimeout(() => {
2017-08-17 22:00:37 +05:30
expect(component.$el.getAttribute('data-original-title')).toBe('changed');
done();
});
});
it('should render an svg', () => {
expect(component.$el.querySelector('.ci-action-icon-wrapper')).toBeDefined();
expect(component.$el.querySelector('svg')).toBeDefined();
});
});