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: 7f5da549a9dca15d8c90832984d89ea6c87e9e06 (plain)
1
2
3
4
5
6
7
8
9
10
11
export default ({ summaryEndpoint = '', suiteEndpoint = '' }) => ({
  summaryEndpoint,
  suiteEndpoint,
  testReports: {},
  selectedSuiteIndex: null,
  isLoading: false,
  pageInfo: {
    page: 1,
    perPage: 20,
  },
});