it('remove prop title of the component', () => {
    const Component = removeProp('title')(ComponentMock);
    const wrapper = shallow(<Component title="Prueba" />).dive();

    expect(wrapper.props().children).toBeUndefined();