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

mock_data.js « test_reports « pipelines « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d03f0b655f927c49e40432cbbeeecfc85e8c753 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { TestStatus } from '~/pipelines/constants';

export default [
  {
    classname: 'spec.test_spec',
    execution_time: 0,
    name: 'Test#skipped text',
    stack_trace: null,
    status: TestStatus.SKIPPED,
    system_output: null,
  },
];