/** * This test was generated */ import { render } from '@testing-library/react'; import { PaginationNavigation } from '../../PaginationNavigation'; // any missing imports can usually be resolved by adding them here import {} from '../..'; it('Navigation should match snapshot (auto-generated)', () => { const { asFragment } = render( {}} onNextClick={() => undefined as any} onPreviousClick={() => undefined as any} onFirstClick={() => undefined as any} onLastClick={() => undefined as any} onPageInput={() => undefined as any} /> ); expect(asFragment()).toMatchSnapshot(); });