mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-12 20:43:11 +08:00

* List not display NoData when loading state & customize Spin indicator. #8647 #8659 * fixed ci warning * fix: empty block
13 lines
292 B
JavaScript
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();
|
|
});
|
|
});
|