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