summaryrefslogtreecommitdiff
path: root/app/assets
diff options
context:
space:
mode:
authorJames Fargher <proglottis@gmail.com>2019-02-01 07:58:36 +1300
committerJames Fargher <proglottis@gmail.com>2019-02-01 13:58:11 +1300
commit86a313bb41178db2e3cc205d2f9f193d6e929911 (patch)
treeed29ab2d18c04a515368b9ce34e9d3301fcc07ad /app/assets
parentc12863322595e77b03a5a089ff079bf13574a57b (diff)
downloadgitlab-ce-86a313bb41178db2e3cc205d2f9f193d6e929911.tar.gz
Wait for auto-devops CI jobs on the job page
These tests used to wait on the pipeline page which made debugging job failures difficult
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/javascripts/jobs/components/stages_dropdown.vue4
-rw-r--r--app/assets/javascripts/pipelines/components/graph/job_item.vue2
2 files changed, 4 insertions, 2 deletions
diff --git a/app/assets/javascripts/jobs/components/stages_dropdown.vue b/app/assets/javascripts/jobs/components/stages_dropdown.vue
index 91332c21b52..c5076d65ff9 100644
--- a/app/assets/javascripts/jobs/components/stages_dropdown.vue
+++ b/app/assets/javascripts/jobs/components/stages_dropdown.vue
@@ -39,7 +39,9 @@ export default {
<ci-icon :status="pipeline.details.status" class="vertical-align-middle" />
<span class="font-weight-bold">{{ __('Pipeline') }}</span>
- <a :href="pipeline.path" class="js-pipeline-path link-commit">#{{ pipeline.id }}</a>
+ <a :href="pipeline.path" class="js-pipeline-path link-commit qa-pipeline-path"
+ >#{{ pipeline.id }}</a
+ >
<template v-if="hasRef">
{{ __('from') }}
<a :href="pipeline.ref.path" class="link-commit ref-name">{{ pipeline.ref.name }}</a>
diff --git a/app/assets/javascripts/pipelines/components/graph/job_item.vue b/app/assets/javascripts/pipelines/components/graph/job_item.vue
index cf9db89e32b..2b32a6e4a98 100644
--- a/app/assets/javascripts/pipelines/components/graph/job_item.vue
+++ b/app/assets/javascripts/pipelines/components/graph/job_item.vue
@@ -108,7 +108,7 @@ export default {
:href="status.details_path"
:title="tooltipText"
:class="cssClassJobName"
- class="js-pipeline-graph-job-link"
+ class="js-pipeline-graph-job-link qa-job-link"
>
<job-name-component :name="job.name" :status="job.status" />
</gl-link>