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.
66 lines
2.4 KiB
66 lines
2.4 KiB
import { render } from '@testing-library/react';
|
|
import React from 'react';
|
|
import Spin from '..';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
import rtlTest from '../../../tests/shared/rtlTest';
|
|
import { waitFakeTimer } from '../../../tests/utils';
|
|
|
|
describe('Spin', () => {
|
|
mountTest(Spin);
|
|
rtlTest(Spin);
|
|
|
|
it('should only affect the spin element when set style to a nested <Spin>xx</Spin>', () => {
|
|
const { container } = render(
|
|
<Spin style={{ background: 'red' }}>
|
|
<div>content</div>
|
|
</Spin>,
|
|
);
|
|
expect(container.querySelector<HTMLElement>('.ant-spin-nested-loading')?.style.length).toBe(0);
|
|
expect(container.querySelector<HTMLElement>('.ant-spin')?.style.background).toBe('red');
|
|
});
|
|
|
|
it("should render custom indicator when it's set", () => {
|
|
const customIndicator = <div className="custom-indicator" />;
|
|
const { asFragment } = render(<Spin indicator={customIndicator} />);
|
|
expect(asFragment().firstChild).toMatchSnapshot();
|
|
});
|
|
|
|
it('should be controlled by spinning', async () => {
|
|
jest.useFakeTimers();
|
|
const { container, rerender } = render(<Spin spinning={false} />);
|
|
expect(container.querySelector('.ant-spin-spinning')).toBeFalsy();
|
|
rerender(<Spin spinning />);
|
|
await waitFakeTimer();
|
|
expect(container.querySelector('.ant-spin-spinning')).toBeTruthy();
|
|
jest.clearAllTimers();
|
|
jest.useRealTimers();
|
|
});
|
|
|
|
it('if indicator set null should not be render default indicator', () => {
|
|
const { asFragment } = render(<Spin indicator={null as any} />);
|
|
expect(asFragment().firstChild).toMatchSnapshot();
|
|
});
|
|
|
|
it('should support static method Spin.setDefaultIndicator', () => {
|
|
Spin.setDefaultIndicator(<em className="custom-spinner" />);
|
|
const { asFragment } = render(<Spin />);
|
|
expect(asFragment().firstChild).toMatchSnapshot();
|
|
Spin.setDefaultIndicator(null);
|
|
});
|
|
|
|
it('should render 0', () => {
|
|
const { container } = render(<Spin>{0}</Spin>);
|
|
expect(container.querySelector('.ant-spin-container')?.textContent).toBe('0');
|
|
});
|
|
|
|
it('warning tip without nest', () => {
|
|
const errSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
|
|
|
const { container } = render(<Spin tip="Not Show" />);
|
|
expect(container.querySelector('.ant-spin-text')).toBeFalsy();
|
|
|
|
expect(errSpy).toHaveBeenCalledWith('Warning: [antd: Spin] `tip` only work in nest pattern.');
|
|
|
|
errSpy.mockRestore();
|
|
});
|
|
});
|
|
|