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

mock_data.js « components « learn_gitlab « projects « pages « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e633cb7cf5bec6373e3b63b3dec53b1d1bbef22 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
export const testActions = {
  gitWrite: {
    url: 'http://example.com/',
    completed: true,
    svg: 'http://example.com/images/illustration.svg',
  },
  userAdded: {
    url: 'http://example.com/',
    completed: true,
    svg: 'http://example.com/images/illustration.svg',
  },
  pipelineCreated: {
    url: 'http://example.com/',
    completed: false,
    svg: 'http://example.com/images/illustration.svg',
  },
  trialStarted: {
    url: 'http://example.com/',
    completed: false,
    svg: 'http://example.com/images/illustration.svg',
  },
  codeOwnersEnabled: {
    url: 'http://example.com/',
    completed: false,
    svg: 'http://example.com/images/illustration.svg',
  },
  requiredMrApprovalsEnabled: {
    url: 'http://example.com/',
    completed: false,
    svg: 'http://example.com/images/illustration.svg',
  },
  mergeRequestCreated: {
    url: 'http://example.com/',
    completed: false,
    svg: 'http://example.com/images/illustration.svg',
  },
  securityScanEnabled: {
    url: 'http://example.com/',
    completed: false,
    svg: 'http://example.com/images/illustration.svg',
  },
  issueCreated: {
    url: 'http://example.com/',
    completed: false,
    svg: 'http://example.com/images/illustration.svg',
  },
};

export const testSections = {
  workspace: {
    svg: 'workspace.svg',
  },
  deploy: {
    svg: 'deploy.svg',
  },
  plan: {
    svg: 'plan.svg',
  },
};

export const testProject = {
  name: 'test-project',
};