import React from 'react' import { render } from '@testing-library/react' import Photos from './Photos' import data from '../../../.jest/__fixtures__/photos.json' describe('/photos', () => { it('renders without crashing', () => { const pageContext = { slug: '/photos', currentPageNumber: 2, numPages: 20 } const { container } = render( // @ts-expect-error: only testing first render ) expect(container.firstChild).toBeInTheDocument() }) })