mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
846135216a
* chore: adjust color * chore: adjust color * test: patch test case * chore: clean up
48 lines
1.3 KiB
TypeScript
48 lines
1.3 KiB
TypeScript
import React from 'react';
|
|
import Empty from '..';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
import rtlTest from '../../../tests/shared/rtlTest';
|
|
import { render } from '../../../tests/utils';
|
|
import ConfigProvider from '../../config-provider';
|
|
import theme from '../../theme';
|
|
|
|
describe('Empty', () => {
|
|
mountTest(Empty);
|
|
rtlTest(Empty);
|
|
|
|
it('image size should change', () => {
|
|
const { container } = render(<Empty imageStyle={{ height: 20 }} />);
|
|
expect(container.querySelector<HTMLDivElement>('.ant-empty-image')?.style.height).toBe('20px');
|
|
});
|
|
|
|
it('description can be false', () => {
|
|
const { container } = render(<Empty description={false} />);
|
|
expect(container.querySelector('.ant-empty-description')).toBeFalsy();
|
|
});
|
|
|
|
it('should render in RTL direction', () => {
|
|
const { asFragment } = render(
|
|
<ConfigProvider direction="rtl">
|
|
<Empty />
|
|
</ConfigProvider>,
|
|
);
|
|
expect(asFragment().firstChild).toMatchSnapshot();
|
|
});
|
|
|
|
it('dark mode compatible', () => {
|
|
const { container } = render(
|
|
<ConfigProvider
|
|
theme={{
|
|
algorithm: theme.darkAlgorithm,
|
|
}}
|
|
>
|
|
<Empty />
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
expect(container.querySelector('svg')).toHaveStyle({
|
|
opacity: 0.65,
|
|
});
|
|
});
|
|
});
|