mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
36 lines
900 B
TypeScript
36 lines
900 B
TypeScript
import { render } from '@testing-library/react';
|
|
import React from 'react';
|
|
|
|
import { DashboardModel, PanelModel } from '../dashboard/state';
|
|
|
|
import { TestRuleResult, Props } from './TestRuleResult';
|
|
|
|
jest.mock('@grafana/runtime', () => {
|
|
const original = jest.requireActual('@grafana/runtime');
|
|
|
|
return {
|
|
...original,
|
|
getBackendSrv: () => ({
|
|
post: jest.fn(),
|
|
}),
|
|
};
|
|
});
|
|
|
|
const props: Props = {
|
|
panel: new PanelModel({ id: 1 }),
|
|
dashboard: new DashboardModel({ panels: [{ id: 1 }] }),
|
|
};
|
|
|
|
describe('TestRuleResult', () => {
|
|
it('should render without error', () => {
|
|
expect(() => render(<TestRuleResult {...props} />)).not.toThrow();
|
|
});
|
|
|
|
it('should call testRule when mounting', () => {
|
|
jest.spyOn(TestRuleResult.prototype, 'testRule');
|
|
render(<TestRuleResult {...props} />);
|
|
|
|
expect(TestRuleResult.prototype.testRule).toHaveBeenCalled();
|
|
});
|
|
});
|