import React from 'react'; import { BrowserRouter as Router } from 'react-router-dom'; import { render } from '@testing-library/react'; import NotFound from './NotFound'; describe(' component', () => { test('should load the component in default state', () => { const { container } = render( ); expect(container.firstChild).toMatchSnapshot(); }); test.todo('Test Button Click'); });