react-key-value
Version:
Key value visualizer/editor written in React
23 lines (18 loc) • 600 B
JavaScript
;
var jsdom = require('jsdom').jsdom;
var exposedProperties = ['window', 'navigator', 'document'];
global.document = jsdom('');
global.window = document.defaultView;
global.window.getSelection = function () {};
Object.keys(document.defaultView).forEach(function (property) {
if (typeof global[property] === 'undefined') {
exposedProperties.push(property);
global[property] = document.defaultView[property];
}
});
global.navigator = {
userAgent: 'node.js'
};
global.Node = function () {
// we need to mock it, because some modules use it but it's undefined in tests
};