import React from 'react';
import { render } from 'react-testing-library';
import { IntlProvider } from 'react-intl';
import NotFoundPage from '../index';
describe('', () => {
it('should render and match the snapshot', () => {
const {
container: { firstChild },
} = render(
,
);
expect(firstChild).toMatchSnapshot();
});
});