Commit a353c966 authored by Fatih Acet's avatar Fatih Acet

Merge branch '32021-job-component-test-failure' into 'master'

Fix test failure in job vue componenFix test failure in job vue componentt

Closes #32021

See merge request !11208
parents ecc6cc8b 4ff6cec2
...@@ -19,34 +19,49 @@ describe('graph component', () => { ...@@ -19,34 +19,49 @@ describe('graph component', () => {
}); });
describe('with a successfull response', () => { describe('with a successfull response', () => {
const interceptor = (request, next) => { const graphJSON = {
next(request.respondWith(JSON.stringify({
details: { details: {
stages: [{ stages: [{
name: 'test', name: 'review',
title: 'test: passed', title: 'review: passed',
groups: [{
name: 'review_1',
size: 1,
status: { status: {
icon: 'icon_status_success', icon: 'icon_status_success',
text: 'passed', text: 'passed',
label: 'passed', label: 'passed',
details_path: '/root/ci-mock/pipelines/123#test', group: 'success',
has_details: true,
details_path: '/root/review-app/builds/4374',
favicon: '/assets/ci_favicons/dev/favicon_status_success-308b4fc054cdd1b68d0865e6cfb7b02e92e3472f201507418f8eddb74ac11a59.ico',
action: {
icon: 'icon_action_retry',
title: 'Retry',
path: '/root/review-app/builds/4374/retry',
method: 'post',
},
}, },
path: '/root/ci-mock/pipelines/123#test',
groups: [{
name: 'test',
size: 1,
jobs: [{ jobs: [{
id: 4153, id: 4374,
name: 'test', name: 'review_1',
build_path: '/root/review-app/builds/4374',
retry_path: '/root/review-app/builds/4374/retry',
playable: false,
created_at: '2017-05-08T14:57:39.880Z',
updated_at: '2017-05-08T14:57:52.639Z',
status: { status: {
icon: 'icon_status_success', icon: 'icon_status_success',
text: 'passed', text: 'passed',
label: 'passed', label: 'passed',
details_path: '/root/ci-mock/builds/4153', group: 'success',
has_details: true,
details_path: '/root/review-app/builds/4374',
favicon: '/assets/ci_favicons/dev/favicon_status_success-308b4fc054cdd1b68d0865e6cfb7b02e92e3472f201507418f8eddb74ac11a59.ico',
action: { action: {
icon: 'icon_action_retry', icon: 'icon_action_retry',
title: 'Retry', title: 'Retry',
path: '/root/ci-mock/builds/4153/retry', path: '/root/review-app/builds/4374/retry',
method: 'post', method: 'post',
}, },
}, },
...@@ -54,7 +69,10 @@ describe('graph component', () => { ...@@ -54,7 +69,10 @@ describe('graph component', () => {
}], }],
}], }],
}, },
}), { };
const interceptor = (request, next) => {
next(request.respondWith(JSON.stringify(graphJSON), {
status: 200, status: 200,
})); }));
}; };
......
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