blob: 047d309e30722185d751fbd55a3e1872f32ce10e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import React from 'react'
import {NotFound} from '../../../src/view/screens/NotFound'
import renderer from 'react-test-renderer'
// import {render} from '../../../../jest/test-utils'
describe('NotFound', () => {
it('renders correctly', () => {
const tree = renderer.create(<NotFound />).toJSON()
expect(tree).toMatchSnapshot()
})
})
|