/**
* Testing the NotFoundPage
*/
import React from 'react';
import { render } from 'react-testing-library';
import { IntlProvider } from 'react-intl';
import NotFound from '../index';
import messages from '../messages';
describe('', () => {
it('should render the Page Not Found text', () => {
const { queryByText } = render(
,
);
expect(queryByText(messages.header.defaultMessage)).not.toBeNull();
});
});