ant-design/components/list/__tests__/index.test.js
Dmitry Manannikov c0e60f8097 Fix wrong List property (#10123) (#10128)
This diff excludes `locale` from `rest` variable to
avoid passing to div.

Close #10123
2018-04-18 00:15:22 +08:00

19 lines
525 B
JavaScript

import React from 'react';
import { mount } from 'enzyme';
import List from '..';
const ListItem = List.Item;
describe('List', () => {
it('locale not passed to internal div', async () => {
const locale = { emptyText: 'Custom text' };
const renderItem = item => <ListItem>{item}</ListItem>;
const dataSource = [];
const wrapper = mount(
<List renderItem={renderItem} dataSource={dataSource} locale={locale} />
);
expect(wrapper.find('div').first().props().locale).toBe(undefined);
});
});