summaryrefslogtreecommitdiff
path: root/spec/javascripts/monitoring/charts/single_stat_spec.js
blob: 12b73002f976bb5e2c3dd90cff26840c094f0a92 (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
import { shallowMount } from '@vue/test-utils';
import SingleStatChart from '~/monitoring/components/charts/single_stat.vue';

describe('Single Stat Chart component', () => {
  let singleStatChart;

  beforeEach(() => {
    singleStatChart = shallowMount(SingleStatChart, {
      propsData: {
        title: 'Time to render',
        value: 1,
        unit: 'sec',
      },
    });
  });

  afterEach(() => {
    singleStatChart.destroy();
  });

  describe('computed', () => {
    describe('valueWithUnit', () => {
      it('should interpolate the value and unit props', () => {
        expect(singleStatChart.vm.valueWithUnit).toBe('1sec');
      });
    });
  });
});