/* eslint-disable react/no-multi-comp */ import React from 'react'; import { mount } from 'enzyme'; import Table from '..'; const columns = [ { title: 'Name', key: 'name', dataIndex: 'name', }, ]; const data = [ { key: '1', firstName: 'John', lastName: 'Brown', age: 32, children: [ { key: '2', firstName: 'Jim', lastName: 'Green', age: 42, }, ], }, ]; describe('Table.expand', () => { it('click to expand', () => { const wrapper = mount(