2021-10-12 13:14:26 +08:00
|
|
|
// eslint-disable-next-line no-console
|
2021-08-31 15:51:02 +08:00
|
|
|
const originError = console.error;
|
|
|
|
|
|
|
|
/** This function will remove `useLayoutEffect` server side warning. Since it's useless. */
|
|
|
|
export function excludeWarning() {
|
2023-06-07 21:59:21 +08:00
|
|
|
const errorSpy = jest.spyOn(console, 'error').mockImplementation((msg, ...rest) => {
|
2021-08-31 15:51:02 +08:00
|
|
|
if (String(msg).includes('useLayoutEffect does nothing on the server')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
originError(msg, ...rest);
|
|
|
|
});
|
|
|
|
|
2022-09-14 11:34:49 +08:00
|
|
|
return errorSpy;
|
2021-08-31 15:51:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export default function excludeAllWarning() {
|
|
|
|
let cleanUp: Function;
|
|
|
|
|
|
|
|
beforeAll(() => {
|
2022-09-14 11:34:49 +08:00
|
|
|
cleanUp = excludeWarning().mockRestore;
|
2021-08-31 15:51:02 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
afterAll(() => {
|
|
|
|
cleanUp();
|
|
|
|
});
|
|
|
|
}
|