amis2/__tests__/jest.setup.js
liaoxuezhi 955ad22b5d
crud 可以直接配置 perPage 的值,而不需要在 defaultParams 中配置 (#1662)
* crud 可以直接配置 perPage 的值,而不需要在 defaultParams 中配置

* 补充 crud 属性表

* 顺带更新一下 snapshot

* 还有部分用例受时区影响

* test 设置 timezone

* test 设置 timezone

* 只更新需要一定的延时
2021-03-17 10:26:41 +08:00

23 lines
527 B
JavaScript

const originalWarn = console.warn.bind(console.warn);
require('moment-timezone');
const moment = require('moment');
moment.tz.setDefault('Asia/Shanghai');
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;
});