2023-05-06 15:49:37 +08:00
|
|
|
import * as React from 'react';
|
2022-09-22 16:15:00 +08:00
|
|
|
import Divider from '..';
|
|
|
|
import mountTest from '../../../tests/shared/mountTest';
|
2023-06-03 18:16:28 +08:00
|
|
|
import { render } from '../../../tests/utils';
|
2022-09-22 16:15:00 +08:00
|
|
|
|
|
|
|
describe('Divider', () => {
|
|
|
|
mountTest(Divider);
|
|
|
|
|
|
|
|
it('not show children when vertical', () => {
|
2023-06-07 21:59:21 +08:00
|
|
|
const errSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
2022-09-22 16:15:00 +08:00
|
|
|
|
|
|
|
const { container } = render(<Divider type="vertical">Bamboo</Divider>);
|
2023-06-03 18:16:28 +08:00
|
|
|
expect(container.querySelector<HTMLSpanElement>('.ant-divider-inner-text')).toBeFalsy();
|
2022-09-22 16:15:00 +08:00
|
|
|
|
|
|
|
errSpy.mockRestore();
|
|
|
|
});
|
2023-06-03 18:16:28 +08:00
|
|
|
|
|
|
|
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,
|
|
|
|
});
|
|
|
|
});
|
2022-09-22 16:15:00 +08:00
|
|
|
});
|