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.
63 lines
1.4 KiB
63 lines
1.4 KiB
import React from 'react';
|
|
import { render, shallow } from 'enzyme';
|
|
import { renderToJson } from 'enzyme-to-json';
|
|
import Table from '..';
|
|
|
|
const { Column, ColumnGroup } = Table;
|
|
|
|
describe('Table', () => {
|
|
it('renders JSX correctly', () => {
|
|
const data = [{
|
|
key: '1',
|
|
firstName: 'John',
|
|
lastName: 'Brown',
|
|
age: 32,
|
|
}, {
|
|
key: '2',
|
|
firstName: 'Jim',
|
|
lastName: 'Green',
|
|
age: 42,
|
|
}];
|
|
|
|
const wrapper = render(
|
|
<Table dataSource={data} pagination={false}>
|
|
<ColumnGroup title="Name">
|
|
<Column
|
|
title="First Name"
|
|
dataIndex="firstName"
|
|
key="firstName"
|
|
/>
|
|
<Column
|
|
title="Last Name"
|
|
dataIndex="lastName"
|
|
key="lastName"
|
|
/>
|
|
</ColumnGroup>
|
|
<Column
|
|
title="Age"
|
|
dataIndex="age"
|
|
key="age"
|
|
/>
|
|
</Table>
|
|
);
|
|
|
|
expect(renderToJson(wrapper)).toMatchSnapshot();
|
|
});
|
|
|
|
it('updates columns when receiving props', () => {
|
|
const columns = [{
|
|
title: 'Name',
|
|
key: 'name',
|
|
dataIndex: 'name',
|
|
}];
|
|
const wrapper = shallow(<Table columns={columns} />);
|
|
const newColumns = [{
|
|
title: 'Title',
|
|
key: 'title',
|
|
dataIndex: 'title',
|
|
}];
|
|
wrapper.setProps({ columns: newColumns });
|
|
|
|
expect(wrapper.instance().columns).toBe(newColumns);
|
|
});
|
|
});
|
|
|