debian-mirror-gitlab/app/assets/javascripts/pipelines/stores/test_reports/state.js

12 lines
224 B
JavaScript
Raw Normal View History

2020-10-24 23:57:45 +05:30
export default ({ summaryEndpoint = '', suiteEndpoint = '' }) => ({
2020-07-28 23:09:34 +05:30
summaryEndpoint,
2020-10-24 23:57:45 +05:30
suiteEndpoint,
2019-12-26 22:10:19 +05:30
testReports: {},
2020-07-28 23:09:34 +05:30
selectedSuiteIndex: null,
2019-12-26 22:10:19 +05:30
isLoading: false,
2021-02-22 17:27:13 +05:30
pageInfo: {
page: 1,
perPage: 20,
},
2019-12-26 22:10:19 +05:30
});