mirror of https://github.com/grafana/grafana.git
24 lines
823 B
TypeScript
24 lines
823 B
TypeScript
import React from 'react';
|
|
import { QueryOperationAction } from './QueryOperationAction';
|
|
import { shallow } from 'enzyme';
|
|
|
|
describe('QueryOperationAction', () => {
|
|
it('renders', () => {
|
|
expect(() => shallow(<QueryOperationAction title="test" icon="panel-add" onClick={() => {}} />)).not.toThrow();
|
|
});
|
|
describe('when disabled', () => {
|
|
it('does not call onClick handler', () => {
|
|
const clickSpy = jest.fn();
|
|
const wrapper = shallow(<QueryOperationAction icon="panel-add" onClick={clickSpy} title="Test action" />);
|
|
const actionEl = wrapper.find({ 'aria-label': 'Test action query operation action' });
|
|
|
|
expect(actionEl).toHaveLength(1);
|
|
expect(clickSpy).not.toBeCalled();
|
|
|
|
actionEl.first().simulate('click');
|
|
|
|
expect(clickSpy).toBeCalledTimes(1);
|
|
});
|
|
});
|
|
});
|