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.
92 lines
2.4 KiB
92 lines
2.4 KiB
import MockDate from 'mockdate';
|
|
import type { ReactElement } from 'react';
|
|
import React, { StrictMode } from 'react';
|
|
import type { RenderOptions } from '@testing-library/react';
|
|
import { render, act } from '@testing-library/react';
|
|
import { _rs as onLibResize } from 'rc-resize-observer/lib/utils/observerUtil';
|
|
import { _rs as onEsResize } from 'rc-resize-observer/es/utils/observerUtil';
|
|
|
|
export function assertsExist<T>(item?: T): asserts item is T {
|
|
expect(item).not.toBeUndefined();
|
|
expect(item).not.toBeNull();
|
|
}
|
|
|
|
export function setMockDate(dateString = '2017-09-18T03:30:07.795') {
|
|
MockDate.set(dateString);
|
|
}
|
|
|
|
export function resetMockDate() {
|
|
MockDate.reset();
|
|
}
|
|
|
|
const globalTimeout = global.setTimeout;
|
|
|
|
export const sleep = async (timeout = 0) => {
|
|
await act(async () => {
|
|
await new Promise((resolve) => {
|
|
globalTimeout(resolve, timeout);
|
|
});
|
|
});
|
|
};
|
|
|
|
const customRender = (ui: ReactElement, options?: Omit<RenderOptions, 'wrapper'>) =>
|
|
render(ui, { wrapper: StrictMode, ...options });
|
|
|
|
export function renderHook<T>(func: () => T): { result: React.RefObject<T> } {
|
|
const result = React.createRef<T>();
|
|
|
|
const Demo: React.FC = () => {
|
|
(result as any).current = func();
|
|
|
|
return null;
|
|
};
|
|
|
|
customRender(<Demo />);
|
|
|
|
return { result };
|
|
}
|
|
|
|
/**
|
|
* Pure render like `@testing-lib` render which will not wrap with StrictMode.
|
|
*
|
|
* Please only use with render times times of memo usage case.
|
|
*/
|
|
const pureRender = render;
|
|
|
|
export { customRender as render, pureRender };
|
|
|
|
export const triggerResize = (target: Element) => {
|
|
const originGetBoundingClientRect = target.getBoundingClientRect;
|
|
|
|
target.getBoundingClientRect = () => ({ width: 510, height: 903 }) as DOMRect;
|
|
|
|
act(() => {
|
|
onLibResize([{ target } as ResizeObserverEntry]);
|
|
onEsResize([{ target } as ResizeObserverEntry]);
|
|
});
|
|
|
|
target.getBoundingClientRect = originGetBoundingClientRect;
|
|
};
|
|
|
|
/**
|
|
* Wait for a time delay. Will wait `advanceTime * times` ms.
|
|
*
|
|
* @param advanceTime Default 1000
|
|
* @param times Default 20
|
|
*/
|
|
export async function waitFakeTimer(advanceTime = 1000, times = 20) {
|
|
for (let i = 0; i < times; i += 1) {
|
|
// eslint-disable-next-line no-await-in-loop
|
|
await act(async () => {
|
|
await Promise.resolve();
|
|
|
|
if (advanceTime > 0) {
|
|
jest.advanceTimersByTime(advanceTime);
|
|
} else {
|
|
jest.runAllTimers();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
export * from '@testing-library/react';
|
|
|