Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/helpers/ci/jobs_helper_spec.rb')
-rw-r--r--spec/helpers/ci/jobs_helper_spec.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/spec/helpers/ci/jobs_helper_spec.rb b/spec/helpers/ci/jobs_helper_spec.rb
index af369f7d420..1394f536c72 100644
--- a/spec/helpers/ci/jobs_helper_spec.rb
+++ b/spec/helpers/ci/jobs_helper_spec.rb
@@ -19,15 +19,16 @@ RSpec.describe Ci::JobsHelper, feature_category: :continuous_integration do
it 'returns jobs data' do
expect(helper.jobs_data(project, job)).to include({
- "endpoint" => "/#{project.full_path}/-/jobs/#{job.id}.json",
+ "job_endpoint" => "/#{project.full_path}/-/jobs/#{job.id}.json",
+ "log_endpoint" => "/#{project.full_path}/-/jobs/#{job.id}/trace",
+ "test_report_summary_url" => "/#{project.full_path}/-/jobs/#{job.id}/test_report_summary.json",
"page_path" => "/#{project.full_path}/-/jobs/#{job.id}",
"project_path" => project.full_path,
"artifact_help_url" => "/help/user/gitlab_com/index.md#gitlab-cicd",
"deployment_help_url" => "/help/user/project/clusters/deploy_to_cluster.md#troubleshooting",
"runner_settings_url" => "/#{project.full_path}/-/runners#js-runners-settings",
- "build_status" => "pending",
- "build_stage" => "test",
- "retry_outdated_job_docs_url" => "/help/ci/pipelines/settings#retry-outdated-jobs"
+ "retry_outdated_job_docs_url" => "/help/ci/pipelines/settings#retry-outdated-jobs",
+ "pipeline_test_report_url" => "/#{project.full_path}/-/pipelines/#{job.pipeline.id}/test_report"
})
end