import React from 'react'; import { render } from 'react-native-testing-library'; import { Pagination } from './Pagination'; describe('pagination', () => { it('renders correctly', () => { const { toJSON } = render( undefined} size={5} />); expect(toJSON()).toMatchSnapshot(); }); it('renders all props', () => { const { toJSON } = render( undefined} paginationIndex={1} paginationActiveColor="black" paginationDefaultColor="white" size={5} paginationAccessibilityLabels={['1', '2', '3', '4', '5']} />, ); expect(toJSON()).toMatchSnapshot(); }); });