ant-design/components/list/__tests__/index.test.js
2020-10-21 10:35:06 +08:00

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);
});
});