mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 15:45:43 -06:00
44 lines
1.0 KiB
TypeScript
44 lines
1.0 KiB
TypeScript
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
import { DashboardModel } from '../dashboard/state/DashboardModel';
|
|
import { Props, TestRuleResult } from './TestRuleResult';
|
|
|
|
jest.mock('app/core/services/backend_srv', () => ({
|
|
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} />);
|
|
|
|
return { wrapper, instance: wrapper.instance() as TestRuleResult };
|
|
};
|
|
|
|
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();
|
|
});
|
|
});
|
|
});
|