2021-12-06 21:23:34 +08:00
|
|
|
|
import prettyFormat from 'pretty-format';
|
2022-02-15 09:11:00 +08:00
|
|
|
|
|
2021-12-06 21:23:34 +08:00
|
|
|
|
global['prettyFormat'] = prettyFormat;
|
|
|
|
|
|
|
|
|
|
jest.setTimeout(300000);
|
|
|
|
|
|
|
|
|
|
// 把 console.error 转换成 error,方便断言
|
|
|
|
|
(() => {
|
|
|
|
|
const spy = jest.spyOn(console, 'error');
|
|
|
|
|
beforeAll(() => {
|
2022-02-15 09:54:57 +08:00
|
|
|
|
spy.mockImplementation((message) => {
|
2021-12-06 21:23:34 +08:00
|
|
|
|
console.log(message);
|
|
|
|
|
throw new Error(message);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
afterAll(() => {
|
|
|
|
|
spy.mockRestore();
|
|
|
|
|
});
|
|
|
|
|
})();
|
2022-02-15 09:54:57 +08:00
|
|
|
|
|