import React from 'react'; import { render } from '@testing-library/react'; import NavbarDropdownList from './NavbarDropdownList'; describe('NavbarDropdownList', () => { it('renders the component with props', () => { const ref = React.createRef(); const { container } = render( list , ); expect(container.firstChild).toMatchSnapshot(); }); });