amis2/packages/amis-core/__tests__/jest.setup.js
liaoxuezhi 6d26ee61d1
chore: amis 暴露版本信息供外部读取 (#5656)
* publish beta

* chore: amis 暴露版本信息供外部读取

* 解决用例报错
2022-10-31 20:53:36 +08:00

34 lines
865 B
JavaScript

const originalWarn = console.warn.bind(console.warn);
require('@testing-library/jest-dom');
require('moment-timezone');
const moment = require('moment');
moment.tz.setDefault('Asia/Shanghai');
const cleanup = require('@testing-library/react').cleanup;
// https://github.com/nrwl/nx/issues/1178
// 解决jest 运行的时候报:
// ReferenceError: DragEvent is not defined
Object.defineProperty(window, 'DragEvent', {
value: class DragEvent {}
});
global.__buildVersion = '';
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;
cleanup();
});