mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 16:45:43 -06:00
21 lines
750 B
TypeScript
21 lines
750 B
TypeScript
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);
|
|
});
|
|
});
|