ant-design/tests/shared/excludeWarning.ts
renovate[bot] 863f61d908
chore(deps): update dependency eslint to v9 (#50690)
Co-authored-by: afc163 <afc163@gmail.com>
2024-09-19 03:30:19 +08:00

36 lines
801 B
TypeScript

const originError = console.error;
export function isSafeWarning(message: boolean, all = false) {
const list = ['useLayoutEffect does nothing on the server'];
if (all) {
list.push('is deprecated in StrictMode');
}
return list.some((msg) => String(message).includes(msg));
}
/** This function will remove `useLayoutEffect` server side warning. Since it's useless. */
export function excludeWarning() {
const errorSpy = jest.spyOn(console, 'error').mockImplementation((msg, ...rest) => {
if (isSafeWarning(msg)) {
return;
}
originError(msg, ...rest);
});
return errorSpy;
}
export default function excludeAllWarning() {
let cleanUp: () => void;
beforeAll(() => {
cleanUp = excludeWarning().mockRestore;
});
afterAll(() => {
cleanUp();
});
}