You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
830 B
25 lines
830 B
import React from 'react';
|
|
import type { ListProps } from '..';
|
|
import List from '..';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
import rtlTest from '../../../tests/shared/rtlTest';
|
|
import { render } from '../../../tests/utils';
|
|
|
|
describe('List', () => {
|
|
mountTest(List);
|
|
mountTest(List.Item);
|
|
|
|
rtlTest(List);
|
|
rtlTest(List.Item);
|
|
|
|
it('locale not passed to internal div', async () => {
|
|
const locale = { emptyText: 'Custom text' };
|
|
const renderItem: ListProps<any>['renderItem'] = (item) => <List.Item>{item}</List.Item>;
|
|
const dataSource: ListProps<any>['dataSource'] = [];
|
|
|
|
const { container } = render(
|
|
<List renderItem={renderItem} dataSource={dataSource} locale={locale} />,
|
|
);
|
|
expect(container.querySelector('div.ant-list')?.getAttribute('locale')).toBe(null);
|
|
});
|
|
});
|
|
|