2017-11-06 17:34:14 +08:00
|
|
|
/* eslint-disable global-require */
|
2017-08-23 16:29:56 +08:00
|
|
|
import { jsdom } from 'jsdom';
|
|
|
|
|
2016-11-23 16:14:57 +08:00
|
|
|
// fixed jsdom miss
|
|
|
|
if (typeof window !== 'undefined') {
|
2017-08-24 10:19:13 +08:00
|
|
|
const documentHTML = '<!doctype html><html><body><div id="root"></div></body></html>';
|
|
|
|
global.document = jsdom(documentHTML);
|
|
|
|
global.window = document.parentWindow;
|
|
|
|
|
|
|
|
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'));
|
|
|
|
};
|
2016-11-23 16:14:57 +08:00
|
|
|
}
|
2017-08-23 16:29:56 +08:00
|
|
|
|
|
|
|
global.requestAnimationFrame = global.requestAnimationFrame || function (cb) {
|
|
|
|
return setTimeout(cb, 0);
|
|
|
|
};
|
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') {
|
|
|
|
Adapter = require('enzyme-adapter-react-15');
|
|
|
|
} else {
|
|
|
|
Adapter = require('enzyme-adapter-react-16');
|
|
|
|
}
|
2017-09-20 16:26:18 +08:00
|
|
|
|
|
|
|
Enzyme.configure({ adapter: new Adapter() });
|