ant-design/components/list/__tests__/index.test.js

24 lines
627 B
JavaScript
Raw Normal View History

import React from 'react';
import { mount } from 'enzyme';
import List from '..';
2019-08-26 22:53:20 +08:00
import mountTest from '../../../tests/shared/mountTest';
describe('List', () => {
2019-08-26 22:53:20 +08:00
mountTest(List);
mountTest(List.Item);
it('locale not passed to internal div', async () => {
const locale = { emptyText: 'Custom text' };
2019-08-26 22:53:20 +08:00
const renderItem = item => <List.Item>{item}</List.Item>;
const dataSource = [];
2018-12-07 16:17:45 +08:00
const wrapper = mount(<List renderItem={renderItem} dataSource={dataSource} locale={locale} />);
expect(
wrapper
.find('div')
.first()
.props().locale,
).toBe(undefined);
});
});