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 'app/assets/javascripts/pipelines/stores/test_reports/state.js')
-rw-r--r--app/assets/javascripts/pipelines/stores/test_reports/state.js10
1 files changed, 2 insertions, 8 deletions
diff --git a/app/assets/javascripts/pipelines/stores/test_reports/state.js b/app/assets/javascripts/pipelines/stores/test_reports/state.js
index bcf5c147916..af79521d68a 100644
--- a/app/assets/javascripts/pipelines/stores/test_reports/state.js
+++ b/app/assets/javascripts/pipelines/stores/test_reports/state.js
@@ -1,13 +1,7 @@
-export default ({
- fullReportEndpoint = '',
- summaryEndpoint = '',
- useBuildSummaryReport = false,
-}) => ({
+export default ({ summaryEndpoint = '', suiteEndpoint = '' }) => ({
summaryEndpoint,
- fullReportEndpoint,
+ suiteEndpoint,
testReports: {},
selectedSuiteIndex: null,
- hasFullReport: false,
isLoading: false,
- useBuildSummaryReport,
});