Welcome to mirror list, hosted at ThFree Co, Russian Federation.

state.js « test_reports « stores « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ee6f53fa585890655917b3f858c5050f7a67d12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export default ({ blobPath = '', summaryEndpoint = '', suiteEndpoint = '' }) => ({
  blobPath,
  summaryEndpoint,
  suiteEndpoint,
  testReports: {},
  selectedSuiteIndex: null,
  isLoading: false,
  pageInfo: {
    page: 1,
    perPage: 20,
  },
});