You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
524 B
28 lines
524 B
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
import OrgProfile, { Props } from './OrgProfile';
|
|
|
|
jest.mock('app/core/core', () => {
|
|
return {
|
|
contextSrv: {
|
|
hasPermission: () => true,
|
|
},
|
|
};
|
|
});
|
|
|
|
const setup = () => {
|
|
const props: Props = {
|
|
orgName: 'Main org',
|
|
onSubmit: jest.fn(),
|
|
};
|
|
|
|
return shallow(<OrgProfile {...props} />);
|
|
};
|
|
|
|
describe('Render', () => {
|
|
it('should render component', () => {
|
|
const wrapper = setup();
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|
|
|