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/ci/pipeline_details/stores/test_reports/index.js')
-rw-r--r--app/assets/javascripts/ci/pipeline_details/stores/test_reports/index.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/assets/javascripts/ci/pipeline_details/stores/test_reports/index.js b/app/assets/javascripts/ci/pipeline_details/stores/test_reports/index.js
new file mode 100644
index 00000000000..f45a53f47b7
--- /dev/null
+++ b/app/assets/javascripts/ci/pipeline_details/stores/test_reports/index.js
@@ -0,0 +1,14 @@
+import * as actions from './actions';
+import * as getters from './getters';
+import mutations from './mutations';
+import state from './state';
+
+export default (initialState) => {
+ return {
+ namespaced: true,
+ actions,
+ getters,
+ mutations,
+ state: state(initialState),
+ };
+};