mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
22ac0fc3cd
* HelpModal: Migrates to new style * Alerting: Migrates how to do alerting modal to React * ApiKeysModal: migrates to new theme * Dashboard: View dasboard json modal migrated to React and new theme * PluginPage: migrates update plugin modal to react and new theme * Chore: deprecates events and functions * Simplify help modal * Updated json modal to use Modal.ButtonRow * Tweak to api key design * Tests: updates snapshot Co-authored-by: Torkel Ödegaard <torkel@grafana.com>
27 lines
569 B
TypeScript
27 lines
569 B
TypeScript
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
import { ApiKeysAddedModal, Props } from './ApiKeysAddedModal';
|
|
|
|
const setup = (propOverrides?: object) => {
|
|
const props: Props = {
|
|
onDismiss: jest.fn(),
|
|
apiKey: 'api key test',
|
|
rootPath: 'test/path',
|
|
};
|
|
|
|
Object.assign(props, propOverrides);
|
|
|
|
const wrapper = shallow(<ApiKeysAddedModal {...props} />);
|
|
|
|
return {
|
|
wrapper,
|
|
};
|
|
};
|
|
|
|
describe('Render', () => {
|
|
it('should render component', () => {
|
|
const { wrapper } = setup();
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|