mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 13:09:40 +08:00
23 lines
680 B
JavaScript
23 lines
680 B
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import List from '..';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
import rtlTest from '../../../tests/shared/rtlTest';
|
|
|
|
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 => <List.Item>{item}</List.Item>;
|
|
const dataSource = [];
|
|
|
|
const wrapper = mount(<List renderItem={renderItem} dataSource={dataSource} locale={locale} />);
|
|
expect(wrapper.find('div').first().props().locale).toBe(undefined);
|
|
});
|
|
});
|