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.
30 lines
766 B
30 lines
766 B
import React from 'react';
|
|
import Space from '..';
|
|
import { render } from '../../../tests/utils';
|
|
|
|
jest.mock('../../_util/styleChecker', () => ({
|
|
canUseDocElement: () => true,
|
|
isStyleSupport: () => true,
|
|
detectFlexGapSupported: () => true,
|
|
}));
|
|
|
|
describe('flex gap', () => {
|
|
it('should render width empty children', () => {
|
|
const { container } = render(
|
|
<Space>
|
|
<span />
|
|
<span />
|
|
</Space>,
|
|
);
|
|
expect(
|
|
container.querySelector<HTMLDivElement>('div.ant-space')?.style[
|
|
'column-gap' as keyof CSSStyleDeclaration
|
|
],
|
|
).toBe('8px');
|
|
expect(
|
|
container.querySelector<HTMLDivElement>('div.ant-space')?.style[
|
|
'row-gap' as keyof CSSStyleDeclaration
|
|
],
|
|
).toBe('8px');
|
|
});
|
|
});
|
|
|