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); }); it('detect ant-layout-sider-has-trigger class in sider when ant-layout-sider-trigger div tag exists', async () => { const wrapper = mount(
Sider
Content
); expect(wrapper.find('.ant-layout-sider').hasClass('ant-layout-sider-has-trigger')).toBe(true); }); it('should have 50% width of sidebar', async () => { const wrapper = mount(
Sider
Content
); expect(wrapper.find('.ant-layout-sider').at(0).prop('style').width).toBe('50%'); expect(wrapper.find('.ant-layout-sider').at(0).prop('style').flex).toBe('0 0 50%'); }); it('detect ant-layout-sider-zero-width class in sider when its width is 0%', async () => { const wrapper = mount(
Sider
Content
); expect(wrapper.find('.ant-layout-sider').hasClass('ant-layout-sider-zero-width')).toBe(true); }); });