it('renders description', () => {
    const result = mount(<InfoBox description="Some text" />);

    expect(result.find('p')).toHaveText('Some text');
  });