mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
b0e528d14c
* use flex * show clear btn * support one way * add dropdown * add pagination * support pagination * use flex * operation stretch * pagination works * update selection logic * no need to show checkbox on pagination * fix tree demo * support invert selection * remove current pages * update style * update snapshot * clean up * update test case * update test case * update snapshot * fix lint * add deps * update doc * update hover style * update hover checked style * adjust demo & active region * fix lint * update snapshot
65 lines
1.6 KiB
JavaScript
65 lines
1.6 KiB
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import Transfer from '../index';
|
|
|
|
describe('Transfer.Customize', () => {
|
|
const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
|
|
|
afterEach(() => {
|
|
errorSpy.mockReset();
|
|
});
|
|
|
|
afterAll(() => {
|
|
errorSpy.mockRestore();
|
|
});
|
|
|
|
it('props#body does not work anymore', () => {
|
|
const body = jest.fn();
|
|
mount(<Transfer body={body} />);
|
|
|
|
expect(errorSpy.mock.calls.length).toBe(0);
|
|
expect(body).not.toHaveBeenCalled();
|
|
});
|
|
|
|
describe('deprecated function', () => {
|
|
const dataSource = [];
|
|
for (let i = 0; i < 10; i += 1) {
|
|
dataSource.push({
|
|
key: i.toString(),
|
|
});
|
|
}
|
|
const commonProps = {
|
|
dataSource,
|
|
selectedKeys: ['1'],
|
|
targetKeys: ['2'],
|
|
};
|
|
|
|
it('should not exist in render props', () => {
|
|
mount(
|
|
<Transfer {...commonProps}>
|
|
{props => {
|
|
expect('handleFilter' in props).toBeFalsy();
|
|
expect('handleSelect' in props).toBeFalsy();
|
|
expect('handleSelectAll' in props).toBeFalsy();
|
|
expect('handleClear' in props).toBeFalsy();
|
|
expect('body' in props).toBeFalsy();
|
|
expect('checkedKeys' in props).toBeFalsy();
|
|
}}
|
|
</Transfer>,
|
|
);
|
|
});
|
|
});
|
|
|
|
it('warning if use `pagination`', () => {
|
|
mount(
|
|
<Transfer dataSource={[]} pagination>
|
|
{() => null}
|
|
</Transfer>,
|
|
);
|
|
|
|
expect(errorSpy).toHaveBeenCalledWith(
|
|
'Warning: [antd: Transfer] `pagination` not support customize render list.',
|
|
);
|
|
});
|
|
});
|