mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 14:26:36 +00:00
14 lines
268 B
TypeScript
14 lines
268 B
TypeScript
|
import prettyFormat from 'pretty-format';
|
|||
|
|
|||
|
global['prettyFormat'] = prettyFormat;
|
|||
|
|
|||
|
jest.setTimeout(300000);
|
|||
|
|
|||
|
// 把 console.error 转换成 error,方便断言
|
|||
|
(() => {
|
|||
|
const spy = jest.spyOn(console, 'error');
|
|||
|
afterAll(() => {
|
|||
|
spy.mockRestore();
|
|||
|
});
|
|||
|
})();
|