mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 23:35:38 +08:00
26 lines
718 B
JavaScript
26 lines
718 B
JavaScript
import React from 'react';
|
|
import { render } from '../../../tests/utils';
|
|
import Space from '..';
|
|
// eslint-disable-next-line no-unused-vars
|
|
import * as styleChecker from '../../_util/styleChecker';
|
|
|
|
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('div.ant-space').style['column-gap']).toBe('8px');
|
|
expect(container.querySelector('div.ant-space').style['row-gap']).toBe('8px');
|
|
});
|
|
});
|