2020-12-03 13:07:58 +08:00
|
|
|
const originalWarn = console.warn.bind(console.warn);
|
2022-04-12 14:22:39 +08:00
|
|
|
require('@testing-library/jest-dom');
|
2021-03-17 10:26:41 +08:00
|
|
|
require('moment-timezone');
|
|
|
|
const moment = require('moment');
|
|
|
|
moment.tz.setDefault('Asia/Shanghai');
|
|
|
|
|
2020-12-03 13:07:58 +08:00
|
|
|
global.beforeAll(() => {
|
|
|
|
console.warn = msg => {
|
|
|
|
// warning 先关了,实在太吵。
|
|
|
|
// const str = msg.toString();
|
|
|
|
// if (
|
|
|
|
// str.includes('componentWillMount') ||
|
|
|
|
// str.includes('componentWillReceiveProps')
|
|
|
|
// ) {
|
|
|
|
// return;
|
|
|
|
// }
|
|
|
|
// originalWarn(msg);
|
|
|
|
};
|
|
|
|
});
|
|
|
|
global.afterAll(() => {
|
|
|
|
console.warn = originalWarn;
|
|
|
|
});
|