describe('HeroBody', () => {
  it('should render a div with .boldrui-hero__body', () => {
    const component = shallow(<HeroBody>Any Content</HeroBody>);
    expect(component.contains(<div className="boldrui-hero__body">Any Content</div>)).toBe(true);
  });