it('should not render self', () => {
    const render = () => {
      componentRegistry.getComponent = jest.fn(() => undefined);
      shallow(<ComponentWrapper data={{ component: 'ComponentWrapper' }} />);
    };