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: bcf5c147916277c427d68f482a22f5d6ae2deea7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export default ({
  fullReportEndpoint = '',
  summaryEndpoint = '',
  useBuildSummaryReport = false,
}) => ({
  summaryEndpoint,
  fullReportEndpoint,
  testReports: {},
  selectedSuiteIndex: null,
  hasFullReport: false,
  isLoading: false,
  useBuildSummaryReport,
});