grafana/public/app/features/alerting/TestRuleResult.test.tsx

44 lines
1.0 KiB
TypeScript
Raw Normal View History

2019-01-09 04:39:56 -06:00
import React from 'react';
import { TestRuleResult, Props } from './TestRuleResult';
import { DashboardModel } from '../dashboard/state';
2019-01-09 04:39:56 -06:00
import { shallow } from 'enzyme';
jest.mock('@grafana/runtime/src/services/backendSrv', () => ({
2019-01-09 04:39:56 -06:00
getBackendSrv: () => ({
post: jest.fn(),
}),
}));
const setup = (propOverrides?: object) => {
const props: Props = {
panelId: 1,
dashboard: new DashboardModel({ panels: [{ id: 1 }] }),
};
Object.assign(props, propOverrides);
const wrapper = shallow(<TestRuleResult {...props} />);
2019-01-09 04:39:56 -06:00
return { wrapper, instance: wrapper.instance() as TestRuleResult };
2019-01-09 04:39:56 -06:00
};
describe('Render', () => {
it('should render component', () => {
const { wrapper } = setup();
expect(wrapper).toMatchSnapshot();
});
});
describe('Life cycle', () => {
describe('component did mount', () => {
it('should call testRule', () => {
const { instance } = setup();
instance.testRule = jest.fn();
instance.componentDidMount();
expect(instance.testRule).toHaveBeenCalled();
});
});
});