summaryrefslogtreecommitdiff
path: root/spec/frontend/analytics/instance_statistics/components/instance_counts_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/analytics/instance_statistics/components/instance_counts_spec.js')
-rw-r--r--spec/frontend/analytics/instance_statistics/components/instance_counts_spec.js54
1 files changed, 0 insertions, 54 deletions
diff --git a/spec/frontend/analytics/instance_statistics/components/instance_counts_spec.js b/spec/frontend/analytics/instance_statistics/components/instance_counts_spec.js
deleted file mode 100644
index 12b5e14b9c4..00000000000
--- a/spec/frontend/analytics/instance_statistics/components/instance_counts_spec.js
+++ /dev/null
@@ -1,54 +0,0 @@
-import { shallowMount } from '@vue/test-utils';
-import InstanceCounts from '~/analytics/instance_statistics/components/instance_counts.vue';
-import MetricCard from '~/analytics/shared/components/metric_card.vue';
-import { mockInstanceCounts } from '../mock_data';
-
-describe('InstanceCounts', () => {
- let wrapper;
-
- const createComponent = ({ loading = false, data = {} } = {}) => {
- const $apollo = {
- queries: {
- counts: {
- loading,
- },
- },
- };
-
- wrapper = shallowMount(InstanceCounts, {
- mocks: { $apollo },
- data() {
- return {
- ...data,
- };
- },
- });
- };
-
- afterEach(() => {
- wrapper.destroy();
- wrapper = null;
- });
-
- const findMetricCard = () => wrapper.find(MetricCard);
-
- describe('while loading', () => {
- beforeEach(() => {
- createComponent({ loading: true });
- });
-
- it('displays the metric card with isLoading=true', () => {
- expect(findMetricCard().props('isLoading')).toBe(true);
- });
- });
-
- describe('with data', () => {
- beforeEach(() => {
- createComponent({ data: { counts: mockInstanceCounts } });
- });
-
- it('passes the counts data to the metric card', () => {
- expect(findMetricCard().props('metrics')).toEqual(mockInstanceCounts);
- });
- });
-});