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.
18 lines
531 B
18 lines
531 B
2 years ago
|
import * as React from 'react';
|
||
|
import { render } from '../../../tests/utils';
|
||
|
import Divider from '..';
|
||
|
import mountTest from '../../../tests/shared/mountTest';
|
||
|
|
||
|
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('.ant-divider-inner-text')).toBeFalsy();
|
||
|
|
||
|
errSpy.mockRestore();
|
||
|
});
|
||
|
});
|