This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-05-29 09:23:28 -07:00
|
|
|
import { jsdom } from 'jsdom/lib/old-api';
|
2016-10-12 09:06:18 -07:00
|
|
|
import chai from 'chai';
|
|
|
|
import chaiEnzyme from 'chai-enzyme';
|
|
|
|
chai.use(chaiEnzyme());
|
|
|
|
|
2016-10-10 13:32:03 -07:00
|
|
|
var exposedProperties = ['window', 'navigator', 'document'];
|
|
|
|
|
|
|
|
global.document = jsdom('');
|
|
|
|
global.window = document.defaultView;
|
|
|
|
Object.keys(document.defaultView).forEach((property) => {
|
|
|
|
if (typeof global[property] === 'undefined') {
|
|
|
|
exposedProperties.push(property);
|
|
|
|
global[property] = document.defaultView[property];
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
global.navigator = {
|
2017-06-01 08:27:15 -07:00
|
|
|
userAgent: 'node.js',
|
2016-10-10 13:32:03 -07:00
|
|
|
};
|