mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02: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];
|
|
}
|
|
});
|