mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
58 lines
1.8 KiB
TypeScript
58 lines
1.8 KiB
TypeScript
import React from 'react';
|
|
import { render } from '@testing-library/react';
|
|
import { debounce } from 'throttle-debounce';
|
|
|
|
import Spin from '..';
|
|
import { waitFakeTimer } from '../../../tests/utils';
|
|
|
|
jest.mock('throttle-debounce');
|
|
(debounce as jest.Mock).mockImplementation((...args: any[]) =>
|
|
jest.requireActual('throttle-debounce').debounce(...args),
|
|
);
|
|
|
|
describe('delay spinning', () => {
|
|
it("should render with delay when it's mounted with spinning=true and delay", () => {
|
|
const { container } = render(<Spin spinning delay={500} />);
|
|
expect(container.querySelector('.ant-spin')?.classList.contains('ant-spin-spinning')).toEqual(
|
|
false,
|
|
);
|
|
});
|
|
|
|
it('should render when delay is init set', async () => {
|
|
jest.useFakeTimers();
|
|
const { container } = render(<Spin spinning delay={100} />);
|
|
|
|
expect(container.querySelector('.ant-spin-spinning')).toBeFalsy();
|
|
|
|
await waitFakeTimer();
|
|
|
|
expect(container.querySelector('.ant-spin-spinning')).toBeTruthy();
|
|
|
|
jest.clearAllTimers();
|
|
jest.useRealTimers();
|
|
});
|
|
|
|
it('should cancel debounce function when unmount', () => {
|
|
const debouncedFn = jest.fn();
|
|
const cancel = jest.fn();
|
|
(debouncedFn as any).cancel = cancel;
|
|
(debounce as jest.Mock).mockReturnValueOnce(debouncedFn);
|
|
const { unmount } = render(<Spin spinning delay={100} />);
|
|
|
|
expect(cancel).not.toHaveBeenCalled();
|
|
unmount();
|
|
expect(cancel).toHaveBeenCalled();
|
|
});
|
|
|
|
it('should close immediately', async () => {
|
|
jest.useFakeTimers();
|
|
const { container, rerender } = render(<Spin spinning delay={500} />);
|
|
|
|
await waitFakeTimer();
|
|
expect(container.querySelector('.ant-spin-spinning')).toBeTruthy();
|
|
|
|
rerender(<Spin spinning={false} delay={500} />);
|
|
expect(container.querySelector('.ant-spin-spinning')).toBeFalsy();
|
|
});
|
|
});
|