ant-design/components/pagination/__tests__/simple.test.tsx
叶枫 502dac12aa
docs: format code (#48309)
* docs: fix code

* feat: lint

* feat: prettier

* feat: test

* feat: review

* feat: format html

* feat: format html
2024-04-08 14:04:08 +08:00

20 lines
538 B
TypeScript

import React from 'react';
import Pagination from '..';
import { render } from '../../../tests/utils';
describe('Pagination simple mode', () => {
it('should support showTotal in simple mode', () => {
const { container } = render(
<Pagination
simple
total={100}
showTotal={(total: number, range: number[]) => `${range[0]}-${range[1]} of ${total} items`}
/>,
);
expect(container?.querySelector('.ant-pagination-total-text')).toHaveTextContent(
'1-10 of 100 items',
);
});
});