mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-05 22:45:37 +00:00
ebb8c89207
* Upgrade to React 16.0.0 * Disable some uncritical tests while chai-enzyme remains incompatible
16 lines
359 B
JavaScript
16 lines
359 B
JavaScript
import { JSDOM } from 'jsdom';
|
|
import Enzyme from 'enzyme';
|
|
import Adapter from 'enzyme-adapter-react-16';
|
|
|
|
Enzyme.configure({ adapter: new Adapter() });
|
|
|
|
const { window } = new JSDOM('', {
|
|
userAgent: 'node.js',
|
|
});
|
|
|
|
Object.keys(window).forEach(property => {
|
|
if (typeof global[property] === 'undefined') {
|
|
global[property] = window[property];
|
|
}
|
|
});
|