gitlab-org--gitlab-foss/spec/javascripts/environments/environment_rollback_spec.js

48 lines
1.3 KiB
JavaScript
Raw Normal View History

2017-02-09 11:52:22 +00:00
const RollbackComponent = require('~/environments/components/environment_rollback');
2016-12-29 21:42:48 +00:00
describe('Rollback Component', () => {
preloadFixtures('static/environments/element.html.raw');
const retryURL = 'https://gitlab.com/retry';
beforeEach(() => {
loadFixtures('static/environments/element.html.raw');
});
2016-12-08 12:06:49 +00:00
it('Should link to the provided retryUrl', () => {
2017-02-09 11:52:22 +00:00
const component = new RollbackComponent({
el: document.querySelector('.test-dom-element'),
propsData: {
2016-12-08 11:54:08 +00:00
retryUrl: retryURL,
isLastDeployment: true,
},
});
expect(component.$el.getAttribute('href')).toEqual(retryURL);
});
2016-12-08 12:06:49 +00:00
it('Should render Re-deploy label when isLastDeployment is true', () => {
2017-02-09 11:52:22 +00:00
const component = new RollbackComponent({
el: document.querySelector('.test-dom-element'),
propsData: {
2016-12-08 11:54:08 +00:00
retryUrl: retryURL,
isLastDeployment: true,
},
});
expect(component.$el.querySelector('span').textContent).toContain('Re-deploy');
});
2016-12-08 12:06:49 +00:00
it('Should render Rollback label when isLastDeployment is false', () => {
2017-02-09 11:52:22 +00:00
const component = new RollbackComponent({
el: document.querySelector('.test-dom-element'),
propsData: {
2016-12-08 11:54:08 +00:00
retryUrl: retryURL,
isLastDeployment: false,
},
});
expect(component.$el.querySelector('span').textContent).toContain('Rollback');
});
});