Commit 6452a700 authored by Filipa Lacerda's avatar Filipa Lacerda

Removes EE differences for environment_item_spec

parent 5f6167b1
...@@ -27,19 +27,16 @@ describe('Environment item', () => { ...@@ -27,19 +27,16 @@ describe('Environment item', () => {
propsData: { propsData: {
model: mockItem, model: mockItem,
canReadEnvironment: true, canReadEnvironment: true,
toggleDeployBoard: () => {},
store: {},
service: {},
}, },
}).$mount(); }).$mount();
}); });
it('Should render folder icon and name', () => { it('should render folder icon and name', () => {
expect(component.$el.querySelector('.folder-name').textContent).toContain(mockItem.name); expect(component.$el.querySelector('.folder-name').textContent).toContain(mockItem.name);
expect(component.$el.querySelector('.folder-icon')).toBeDefined(); expect(component.$el.querySelector('.folder-icon')).toBeDefined();
}); });
it('Should render the number of children in a badge', () => { it('should render the number of children in a badge', () => {
expect(component.$el.querySelector('.folder-name .badge').textContent).toContain( expect(component.$el.querySelector('.folder-name .badge').textContent).toContain(
mockItem.size, mockItem.size,
); );
...@@ -121,9 +118,6 @@ describe('Environment item', () => { ...@@ -121,9 +118,6 @@ describe('Environment item', () => {
propsData: { propsData: {
model: environment, model: environment,
canReadEnvironment: true, canReadEnvironment: true,
toggleDeployBoard: () => {},
store: {},
service: {},
}, },
}).$mount(); }).$mount();
}); });
...@@ -163,13 +157,13 @@ describe('Environment item', () => { ...@@ -163,13 +157,13 @@ describe('Environment item', () => {
}); });
describe('With build url', () => { describe('With build url', () => {
it('Should link to build url provided', () => { it('should link to build url provided', () => {
expect(component.$el.querySelector('.build-link').getAttribute('href')).toEqual( expect(component.$el.querySelector('.build-link').getAttribute('href')).toEqual(
environment.last_deployment.deployable.build_path, environment.last_deployment.deployable.build_path,
); );
}); });
it('Should render deployable name and id', () => { it('should render deployable name and id', () => {
expect(component.$el.querySelector('.build-link').getAttribute('href')).toEqual( expect(component.$el.querySelector('.build-link').getAttribute('href')).toEqual(
environment.last_deployment.deployable.build_path, environment.last_deployment.deployable.build_path,
); );
...@@ -184,7 +178,7 @@ describe('Environment item', () => { ...@@ -184,7 +178,7 @@ describe('Environment item', () => {
}); });
describe('With manual actions', () => { describe('With manual actions', () => {
it('Should render actions component', () => { it('should render actions component', () => {
expect(component.$el.querySelector('.js-manual-actions-container')).toBeDefined(); expect(component.$el.querySelector('.js-manual-actions-container')).toBeDefined();
}); });
}); });
...@@ -196,13 +190,13 @@ describe('Environment item', () => { ...@@ -196,13 +190,13 @@ describe('Environment item', () => {
}); });
describe('With stop action', () => { describe('With stop action', () => {
it('Should render stop action component', () => { it('should render stop action component', () => {
expect(component.$el.querySelector('.js-stop-component-container')).toBeDefined(); expect(component.$el.querySelector('.js-stop-component-container')).toBeDefined();
}); });
}); });
describe('With retry action', () => { describe('With retry action', () => {
it('Should render rollback component', () => { it('should render rollback component', () => {
expect(component.$el.querySelector('.js-rollback-component-container')).toBeDefined(); expect(component.$el.querySelector('.js-rollback-component-container')).toBeDefined();
}); });
}); });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment