2019-10-17 16:01:46 +08:00
|
|
|
const React = require('react');
|
|
|
|
|
2019-10-22 11:47:09 +08:00
|
|
|
// eslint-disable-next-line no-console
|
2019-10-17 16:01:46 +08:00
|
|
|
console.log('Current React Version:', React.version);
|
|
|
|
|
2017-11-06 17:34:14 +08:00
|
|
|
/* eslint-disable global-require */
|
2016-11-23 16:14:57 +08:00
|
|
|
if (typeof window !== 'undefined') {
|
2017-08-24 10:19:13 +08:00
|
|
|
global.window.resizeTo = (width, height) => {
|
|
|
|
global.window.innerWidth = width || global.window.innerWidth;
|
|
|
|
global.window.innerHeight = height || global.window.innerHeight;
|
|
|
|
global.window.dispatchEvent(new Event('resize'));
|
|
|
|
};
|
2018-05-22 16:39:17 +08:00
|
|
|
global.window.scrollTo = () => {};
|
2016-11-23 16:14:57 +08:00
|
|
|
}
|
2017-08-23 16:29:56 +08:00
|
|
|
|
2018-03-06 21:21:01 +08:00
|
|
|
// The built-in requestAnimationFrame and cancelAnimationFrame not working with jest.runFakeTimes()
|
|
|
|
// https://github.com/facebook/jest/issues/5147
|
2018-11-28 15:00:03 +08:00
|
|
|
global.requestAnimationFrame = cb => setTimeout(cb, 0);
|
|
|
|
global.cancelAnimationFrame = cb => clearTimeout(cb, 0);
|
2018-03-06 21:21:01 +08:00
|
|
|
|
2017-09-20 16:26:18 +08:00
|
|
|
const Enzyme = require('enzyme');
|
2017-11-06 17:34:14 +08:00
|
|
|
|
|
|
|
let Adapter;
|
|
|
|
if (process.env.REACT === '15') {
|
2018-11-28 15:00:03 +08:00
|
|
|
Adapter = require('enzyme-adapter-react-15'); // eslint-disable-line
|
2017-11-06 17:34:14 +08:00
|
|
|
} else {
|
|
|
|
Adapter = require('enzyme-adapter-react-16');
|
|
|
|
}
|
2017-09-20 16:26:18 +08:00
|
|
|
|
|
|
|
Enzyme.configure({ adapter: new Adapter() });
|