UNPKG

trc-client-core

Version:
16 lines (13 loc) 492 B
var jsdom = require('jsdom').jsdom; var exposedProperties = ['window', 'navigator', 'document', 'History']; global.document = jsdom('<!doctype html><html><body></body></html>'); global.window = document.defaultView; 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' };