mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
7322aa6f5f
This reverts commit 6759887c44
.
29 lines
871 B
TypeScript
29 lines
871 B
TypeScript
import * as React from 'react';
|
|
import Divider from '..';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
import { render } from '../../../tests/utils';
|
|
|
|
describe('Divider', () => {
|
|
mountTest(Divider);
|
|
|
|
it('not show children when vertical', () => {
|
|
const errSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
|
|
|
const { container } = render(<Divider type="vertical">Bamboo</Divider>);
|
|
expect(container.querySelector<HTMLSpanElement>('.ant-divider-inner-text')).toBeFalsy();
|
|
|
|
errSpy.mockRestore();
|
|
});
|
|
|
|
it('support string orientationMargin', () => {
|
|
const { container } = render(
|
|
<Divider orientation="right" orientationMargin="10">
|
|
test test test
|
|
</Divider>,
|
|
);
|
|
expect(container?.querySelector<HTMLSpanElement>('.ant-divider-inner-text')).toHaveStyle({
|
|
marginRight: 10,
|
|
});
|
|
});
|
|
});
|