import React from 'react'; import { render } from '@testing-library/react'; import NavbarLink from './NavbarLink'; describe('', () => { it('should render component with default props', () => { const { container } = render(); expect(container.firstChild).toMatchSnapshot(); }); it('should render component with specific props', () => { const { container } = render(); expect(container.firstChild).toMatchSnapshot(); }); });