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

instance_statistics_count_chart_spec.js.snap « __snapshots__ « components « instance_statistics « analytics « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 29bcd5f223bd42805a004b8ca30f4ee2f30cd6a0 (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`InstanceStatisticsCountChart when fetching more data when the fetchMore query returns data passes the data to the line chart 1`] = `
Array [
  Object {
    "data": Array [
      Array [
        "2020-07-01",
        41,
      ],
      Array [
        "2020-06-01",
        22,
      ],
      Array [
        "2020-08-01",
        5,
      ],
    ],
    "name": "Mock Query",
  },
]
`;

exports[`InstanceStatisticsCountChart with data passes the data to the line chart 1`] = `
Array [
  Object {
    "data": Array [
      Array [
        "2020-07-01",
        41,
      ],
      Array [
        "2020-06-01",
        22,
      ],
    ],
    "name": "Mock Query",
  },
]
`;