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

mock_data.js « test_reports « pipeline_details « ci « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 643863c9d240bafa540d4471c41efac23022b63b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { testStatus } from '~/ci/pipeline_details/constants';

export default [
  {
    classname: 'spec.test_spec',
    file: 'spec/trace_spec.rb',
    execution_time: 0,
    name: 'Test#skipped text',
    stack_trace: null,
    status: testStatus.SKIPPED,
    system_output: null,
  },
  {
    classname: 'spec.test_spec',
    file: 'spec/trace_spec.rb',
    execution_time: 0,
    name: 'Test#error text',
    stack_trace: null,
    status: testStatus.ERROR,
    system_output: null,
  },
  {
    classname: 'spec.test_spec',
    file: 'spec/trace_spec.rb',
    execution_time: 0,
    name: 'Test#unknown text',
    stack_trace: null,
    status: testStatus.UNKNOWN,
    system_output: null,
  },
];