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.
28 lines
714 B
28 lines
714 B
7 years ago
|
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(
|
||
|
<Layout>
|
||
|
<Sider>Sider</Sider>
|
||
|
<Content>Content</Content>
|
||
|
</Layout>
|
||
|
);
|
||
|
expect(wrapper.find('.ant-layout').hasClass('ant-layout-has-sider')).toBe(true);
|
||
|
});
|
||
|
|
||
|
it('detect the sider inside the children', async () => {
|
||
|
const wrapper = mount(
|
||
|
<Layout>
|
||
|
<div><Sider>Sider</Sider></div>
|
||
|
<Content>Content</Content>
|
||
|
</Layout>
|
||
|
);
|
||
|
expect(wrapper.find('.ant-layout').hasClass('ant-layout-has-sider')).toBe(true);
|
||
|
});
|
||
|
});
|