mirror of
https://github.com/SomboChea/ui
synced 2024-11-05 22:24:27 +07:00
28 lines
566 B
JavaScript
28 lines
566 B
JavaScript
|
/**
|
||
|
* NotFound component
|
||
|
*/
|
||
|
|
||
|
import React from 'react';
|
||
|
import { BrowserRouter as Router } from 'react-router-dom';
|
||
|
import { shallow } from 'enzyme';
|
||
|
import NotFound from '../../../../src/webui/components/NotFound/index';
|
||
|
|
||
|
console.error = jest.fn();
|
||
|
|
||
|
describe('<NotFound /> component', () => {
|
||
|
let routerWrapper;
|
||
|
beforeEach(() => {
|
||
|
routerWrapper = shallow(
|
||
|
<Router>
|
||
|
<NotFound />
|
||
|
</Router>
|
||
|
);
|
||
|
});
|
||
|
|
||
|
|
||
|
test('should load the component in default state', () => {
|
||
|
expect(routerWrapper.find(NotFound)).toMatchSnapshot();
|
||
|
});
|
||
|
|
||
|
});
|