mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 13:01:30 +01:00
11 lines
252 B
TypeScript
11 lines
252 B
TypeScript
import { render } from '@testing-library/react'
|
|
|
|
import Error404 from 'pages/404'
|
|
|
|
describe('GET /404', () => {
|
|
it('should render', async () => {
|
|
const { getByText } = render(<Error404 />)
|
|
expect(getByText('404')).toBeInTheDocument()
|
|
})
|
|
})
|