ant-design/components/list/__tests__/empty.test.js
niko 675c1c1b8c
List not display NoData when loading state & customize Spin indicator. #8647 #8659 (#8702)
* List not display NoData when loading state & customize Spin indicator. #8647 #8659

* fixed ci warning

* fix: empty block
2017-12-29 10:09:18 +08:00

13 lines
292 B
JavaScript

import React from 'react';
import { render } from 'enzyme';
import List from '..';
describe('List', () => {
it('renders empty list', () => {
const wrapper = render(
<List dataSource={[]} renderItem={() => <List.Item />} />
);
expect(wrapper).toMatchSnapshot();
});
});