提交 71d4d255 编写于 作者: F Filipa Lacerda

Removes EE differences for environment_item_spec

上级 c5370439
...@@ -20,23 +20,23 @@ describe('Environment item', () => { ...@@ -20,23 +20,23 @@ describe('Environment item', () => {
size: 3, size: 3,
isFolder: true, isFolder: true,
environment_path: 'url', environment_path: 'url',
log_path: 'url',
}; };
component = new EnvironmentItem({ component = new EnvironmentItem({
propsData: { propsData: {
model: mockItem, model: mockItem,
canReadEnvironment: true, canReadEnvironment: true,
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,
); );
...@@ -109,6 +109,7 @@ describe('Environment item', () => { ...@@ -109,6 +109,7 @@ describe('Environment item', () => {
}, },
has_stop_action: true, has_stop_action: true,
environment_path: 'root/ci-folders/environments/31', environment_path: 'root/ci-folders/environments/31',
log_path: 'root/ci-folders/environments/31/logs',
created_at: '2016-11-07T11:11:16.525Z', created_at: '2016-11-07T11:11:16.525Z',
updated_at: '2016-11-10T15:55:58.778Z', updated_at: '2016-11-10T15:55:58.778Z',
}; };
...@@ -117,7 +118,6 @@ describe('Environment item', () => { ...@@ -117,7 +118,6 @@ describe('Environment item', () => {
propsData: { propsData: {
model: environment, model: environment,
canReadEnvironment: true, canReadEnvironment: true,
service: {},
}, },
}).$mount(); }).$mount();
}); });
...@@ -157,13 +157,13 @@ describe('Environment item', () => { ...@@ -157,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,
); );
...@@ -178,7 +178,7 @@ describe('Environment item', () => { ...@@ -178,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();
}); });
}); });
...@@ -190,13 +190,13 @@ describe('Environment item', () => { ...@@ -190,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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册