48 lines
1.4 KiB
JavaScript
48 lines
1.4 KiB
JavaScript
//= require vue
|
|
//= require environments/components/environment_rollback
|
|
describe('Rollback Component', () => {
|
|
fixture.preload('environments/element.html');
|
|
|
|
const retryURL = 'https://gitlab.com/retry';
|
|
|
|
beforeEach(() => {
|
|
fixture.load('environments/element.html');
|
|
});
|
|
|
|
it('Should link to the provided retryUrl', () => {
|
|
const component = new window.gl.environmentsList.RollbackComponent({
|
|
el: document.querySelector('.test-dom-element'),
|
|
propsData: {
|
|
retryUrl: retryURL,
|
|
isLastDeployment: true,
|
|
},
|
|
});
|
|
|
|
expect(component.$el.getAttribute('href')).toEqual(retryURL);
|
|
});
|
|
|
|
it('Should render Re-deploy label when isLastDeployment is true', () => {
|
|
const component = new window.gl.environmentsList.RollbackComponent({
|
|
el: document.querySelector('.test-dom-element'),
|
|
propsData: {
|
|
retryUrl: retryURL,
|
|
isLastDeployment: true,
|
|
},
|
|
});
|
|
|
|
expect(component.$el.querySelector('span').textContent).toContain('Re-deploy');
|
|
});
|
|
|
|
|
|
it('Should render Rollback label when isLastDeployment is false', () => {
|
|
const component = new window.gl.environmentsList.RollbackComponent({
|
|
el: document.querySelector('.test-dom-element'),
|
|
propsData: {
|
|
retryUrl: retryURL,
|
|
isLastDeployment: false,
|
|
},
|
|
});
|
|
|
|
expect(component.$el.querySelector('span').textContent).toContain('Rollback');
|
|
});
|
|
});
|