describe('<NavbarMenu />', () => {
  it('should render a div with .boldrui-navbar__menu', () => {
    const component = shallow(<NavbarMenu>My Nav</NavbarMenu>);
    expect(component.contains(<div className="boldrui-navbar__menu">My Nav</div>)).toBe(true);
  });