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

getters.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: 788c1d32987f7e559b35905df9a46f09d18565a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { addIconStatus, formattedTime, sortTestCases } from './utils';

export const getTestSuites = state => {
  const { test_suites: testSuites = [] } = state.testReports;

  return testSuites.map(suite => ({
    ...suite,
    formattedTime: formattedTime(suite.total_time),
  }));
};

export const getSuiteTests = state => {
  const { selectedSuite } = state;

  if (selectedSuite.test_cases) {
    return selectedSuite.test_cases.sort(sortTestCases).map(addIconStatus);
  }

  return [];
};

// prevent babel-plugin-rewire from generating an invalid default during karma tests
export default () => {};