ant-design/components/collapse/__tests__/index.test.js

28 lines
794 B
JavaScript
Raw Normal View History

import React from 'react';
import { mount } from 'enzyme';
import Collapse from '..';
2019-08-26 22:53:20 +08:00
import mountTest from '../../../tests/shared/mountTest';
describe('Collapse', () => {
2019-08-26 22:53:20 +08:00
mountTest(Collapse);
it('should support remove expandIcon', () => {
const wrapper = mount(
<Collapse expandIcon={() => null}>
<Collapse.Panel header="header" />
2019-03-06 13:45:40 +08:00
</Collapse>,
);
expect(wrapper.render()).toMatchSnapshot();
});
it('should render extra node of panel', () => {
const wrapper = mount(
<Collapse>
<Collapse.Panel header="header" extra={<button type="button">action</button>} />
<Collapse.Panel header="header" extra={<button type="button">action</button>} />
2019-03-06 13:45:40 +08:00
</Collapse>,
);
expect(wrapper.render()).toMatchSnapshot();
});
});