mirror of https://github.com/docker/docs.git
17 lines
469 B
JavaScript
17 lines
469 B
JavaScript
require('./server/env');
|
|
|
|
var jsdom = require('jsdom').jsdom;
|
|
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 = {
|
|
userAgent: 'node.js'
|
|
};
|
|
documentRef = document;
|