From 7e9c479f7de77702622631cff2628a9c8dcbc627 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Thu, 19 Nov 2020 08:27:35 +0000 Subject: Add latest changes from gitlab-org/gitlab@13-6-stable-ee --- spec/frontend/pipelines/pipeline_graph/mock_data.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'spec/frontend/pipelines/pipeline_graph/mock_data.js') diff --git a/spec/frontend/pipelines/pipeline_graph/mock_data.js b/spec/frontend/pipelines/pipeline_graph/mock_data.js index b50932deec6..4f55fdd6b28 100644 --- a/spec/frontend/pipelines/pipeline_graph/mock_data.js +++ b/spec/frontend/pipelines/pipeline_graph/mock_data.js @@ -91,3 +91,18 @@ export const pipelineData = { [jobId4]: {}, }, }; + +export const singleStageData = { + stages: [ + { + name: 'build', + groups: [ + { + name: 'build_1', + jobs: [{ script: 'echo hello', stage: 'build' }], + id: jobId1, + }, + ], + }, + ], +}; -- cgit v1.2.1