You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
import React from 'react';
|
|
import { render } from 'enzyme';
|
|
import { LoadingOutlined } from '@ant-design/icons';
|
|
|
|
import List from '..';
|
|
|
|
describe('List', () => {
|
|
it('renders empty loading', () => {
|
|
const loading = {
|
|
spinning: true,
|
|
};
|
|
const wrapper = render(
|
|
<List loading={loading} dataSource={[]} renderItem={() => <List.Item />} />,
|
|
);
|
|
expect(wrapper.find('.ant-list-empty-text')).toHaveLength(0);
|
|
});
|
|
|
|
it('renders object loading', () => {
|
|
const loading = {
|
|
spinning: true,
|
|
};
|
|
const wrapper = render(
|
|
<List loading={loading} dataSource={[1]} renderItem={() => <List.Item />} />,
|
|
);
|
|
expect(wrapper.find('.ant-spin-spinning')).toHaveLength(1);
|
|
});
|
|
|
|
it('renders object loading with indicator', () => {
|
|
const antIcon = <LoadingOutlined style={{ fontSize: 24 }} spin />;
|
|
|
|
const loading = {
|
|
spinning: true,
|
|
indicator: antIcon,
|
|
};
|
|
const wrapper = render(
|
|
<List loading={loading} dataSource={[1]} renderItem={() => <List.Item />} />,
|
|
);
|
|
expect(wrapper.find('.anticon-loading')).toHaveLength(1);
|
|
});
|
|
});
|
|
|