debian-mirror-gitlab/spec/frontend/analytics/usage_trends/components/__snapshots__/usage_trends_count_chart_spec.js.snap
2021-04-17 20:07:23 +05:30

42 lines
711 B
Text

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`UsageTrendsCountChart 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[`UsageTrendsCountChart 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",
},
]
`;