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

mock_data.js « ci_lint « ci « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 05582470dfa991efcce18563b55d99cb59ff0bc5 (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 { mockJobs } from 'jest/ci/pipeline_editor/mock_data';

export const mockLintDataError = {
  data: {
    lintCI: {
      errors: ['Error message'],
      warnings: ['Warning message'],
      valid: false,
      jobs: mockJobs,
    },
  },
};

export const mockLintDataValid = {
  data: {
    lintCI: {
      errors: [],
      warnings: [],
      valid: true,
      jobs: mockJobs,
    },
  },
};