import React from 'react';
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 = item => {item};
const dataSource = [];
const { container } = render(
,
);
expect(container.querySelector('div.ant-list').getAttribute('locale')).toBe(null);
});
});