import { render } from '@testing-library/react'
import { ErrorPage } from '../ErrorPage'
describe('', () => {
  it('should render the message and statusCode', () => {
    const messageContent = 'message content'
    const statusCode = 404
    const { getByText } = render(
      
    )
    expect(getByText(messageContent)).toBeInTheDocument()
    expect(getByText(statusCode)).toBeInTheDocument()
  })
})