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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-06-29 12:09:01 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-06-29 12:09:01 +0300
commit9ce66d4dcfe444ac27fb13b3e064de8bbf3572ef (patch)
tree6724f5ee3fbc7e5b9290a8951035c9c09d8f4437 /app/assets/javascripts/reports
parent7bc73460c0262e1686cdf00be4673f10ffabd1a4 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/reports')
-rw-r--r--app/assets/javascripts/reports/components/grouped_test_reports_app.vue20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/assets/javascripts/reports/components/grouped_test_reports_app.vue b/app/assets/javascripts/reports/components/grouped_test_reports_app.vue
index a670cad5f9f..b28a847e751 100644
--- a/app/assets/javascripts/reports/components/grouped_test_reports_app.vue
+++ b/app/assets/javascripts/reports/components/grouped_test_reports_app.vue
@@ -6,7 +6,9 @@ import ReportSection from './report_section.vue';
import SummaryRow from './summary_row.vue';
import IssuesList from './issues_list.vue';
import Modal from './modal.vue';
+import { GlButton } from '@gitlab/ui';
import createStore from '../store';
+import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
import { summaryTextBuilder, reportTextBuilder, statusIcon } from '../store/utils';
export default {
@@ -17,12 +19,19 @@ export default {
SummaryRow,
IssuesList,
Modal,
+ GlButton,
},
+ mixins: [glFeatureFlagsMixin()],
props: {
endpoint: {
type: String,
required: true,
},
+ pipelinePath: {
+ type: String,
+ required: false,
+ default: '',
+ },
},
componentNames,
computed: {
@@ -43,6 +52,12 @@ export default {
return summaryTextBuilder(s__('Reports|Test summary'), this.summary);
},
+ testTabURL() {
+ return `${this.pipelinePath}/test_report`;
+ },
+ showViewFullReport() {
+ return Boolean(this.glFeatures.junitPipelineView) && this.pipelinePath.length;
+ },
},
created() {
this.setEndpoint(this.endpoint);
@@ -98,6 +113,11 @@ export default {
:has-issues="reports.length > 0"
class="mr-widget-section grouped-security-reports mr-report"
>
+ <template v-if="showViewFullReport" #actionButtons>
+ <gl-button :href="testTabURL" icon="external-link" data-testid="group-test-reports-full-link">
+ {{ s__('ciReport|View full report') }}
+ </gl-button>
+ </template>
<template #body>
<div class="mr-widget-grouped-section report-block">
<template v-for="(report, i) in reports">