summaryrefslogtreecommitdiff
path: root/spec/frontend/analytics/instance_statistics/mock_data.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/analytics/instance_statistics/mock_data.js')
-rw-r--r--spec/frontend/analytics/instance_statistics/mock_data.js35
1 files changed, 0 insertions, 35 deletions
diff --git a/spec/frontend/analytics/instance_statistics/mock_data.js b/spec/frontend/analytics/instance_statistics/mock_data.js
deleted file mode 100644
index e86e552a952..00000000000
--- a/spec/frontend/analytics/instance_statistics/mock_data.js
+++ /dev/null
@@ -1,35 +0,0 @@
-export const mockInstanceCounts = [
- { key: 'projects', value: 10, label: 'Projects' },
- { key: 'groups', value: 20, label: 'Group' },
-];
-
-export const mockCountsData1 = [
- { recordedAt: '2020-07-23', count: 52 },
- { recordedAt: '2020-07-22', count: 40 },
- { recordedAt: '2020-07-21', count: 31 },
- { recordedAt: '2020-06-14', count: 23 },
- { recordedAt: '2020-06-12', count: 20 },
-];
-
-export const countsMonthlyChartData1 = [
- ['2020-07-01', 41], // average of 2020-07-x items
- ['2020-06-01', 21.5], // average of 2020-06-x items
-];
-
-export const mockCountsData2 = [
- { recordedAt: '2020-07-28', count: 10 },
- { recordedAt: '2020-07-27', count: 9 },
- { recordedAt: '2020-06-26', count: 14 },
- { recordedAt: '2020-06-25', count: 23 },
- { recordedAt: '2020-06-24', count: 25 },
-];
-
-export const countsMonthlyChartData2 = [
- ['2020-07-01', 9.5], // average of 2020-07-x items
- ['2020-06-01', 20.666666666666668], // average of 2020-06-x items
-];
-
-export const roundedSortedCountsMonthlyChartData2 = [
- ['2020-06-01', 21], // average of 2020-06-x items
- ['2020-07-01', 10], // average of 2020-07-x items
-];