import React from 'react'; import { mount } from 'enzyme'; import Layout from '..'; const { Sider, Content } = Layout; describe('Layout', () => { it('detect the sider as children', async () => { const wrapper = mount( Sider Content ); expect(wrapper.find('.ant-layout').hasClass('ant-layout-has-sider')).toBe(true); }); it('detect the sider inside the children', async () => { const wrapper = mount(
Sider
Content
); expect(wrapper.find('.ant-layout').hasClass('ant-layout-has-sider')).toBe(true); }); });