mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 02:58:05 +08:00
955ad22b5d
* crud 可以直接配置 perPage 的值,而不需要在 defaultParams 中配置 * 补充 crud 属性表 * 顺带更新一下 snapshot * 还有部分用例受时区影响 * test 设置 timezone * test 设置 timezone * 只更新需要一定的延时
23 lines
527 B
JavaScript
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;
|
|
});
|