| 1234567891011121314151617181920 |
- import React from 'react';
- import { shallow } from 'enzyme';
- import { LoadingState } from '@grafana/data';
- import { PanelData } from '@grafana/ui';
- import QueryStatus from './QueryStatus';
- describe('<QueryStatus />', () => {
- it('should render with a latency', () => {
- const res: PanelData = { series: [], state: LoadingState.Done };
- const wrapper = shallow(<QueryStatus latency={0} queryResponse={res} />);
- expect(wrapper.find('div').exists()).toBeTruthy();
- });
- it('should not render when query has not started', () => {
- const res: PanelData = { series: [], state: LoadingState.NotStarted };
- const wrapper = shallow(<QueryStatus latency={0} queryResponse={res} />);
- expect(wrapper.getElement()).toBe(null);
- });
- });
|