import { shallow } from 'enzyme'; import React from 'react'; 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(); }; describe('Render', () => { it('should render component', () => { const wrapper = setup(); expect(wrapper).toMatchSnapshot(); }); });