mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
11 lines
313 B
JavaScript
11 lines
313 B
JavaScript
import React from 'react';
|
|
import { render } from '../../../tests/utils';
|
|
import List from '..';
|
|
|
|
describe('List', () => {
|
|
it('renders empty list', () => {
|
|
const { container } = render(<List dataSource={[]} renderItem={() => <List.Item />} />);
|
|
expect(container.firstChild).toMatchSnapshot();
|
|
});
|
|
});
|