/**
* @jest-environment jsdom
*/
import React from 'react';
import renderer from 'react-test-renderer';
import 'jest-styled-components';
import NotFoundHoc from '@containers/navigation/not-found-hoc.js';
import { Router, Store } from '../../mocks';
xit('renders without throwing', () => {
const tree = renderer
.create(
)
.toJSON();
expect(tree).toMatchSnapshot();
});