3e03e0ebbf
* update npm/gem dependencies * move to react prop-types package and fix jsdom usage * fix sinon * fix test support * eslint?
25 lines
775 B
JavaScript
25 lines
775 B
JavaScript
const jsdom = require('jsdom')
|
|
|
|
const { JSDOM } = jsdom
|
|
const dom = new JSDOM('<!doctype html><html><body></body></html>')
|
|
|
|
global.document = dom.window.document
|
|
global.window = dom.window
|
|
|
|
// take all properties of the window object and also attach it to the
|
|
// mocha global object
|
|
propagateToGlobal(dom.window)
|
|
|
|
// from mocha-jsdom https://github.com/rstacruz/mocha-jsdom/blob/master/index.js#L80
|
|
function propagateToGlobal(window) {
|
|
global.HTMLElement = window.HTMLElement
|
|
Object.keys(window).forEach(key => {
|
|
if (key in global) return
|
|
global[key] = window[key]
|
|
})
|
|
}
|
|
|
|
// Metamaps dependencies fixes
|
|
global.HowlerGlobal = global.HowlerGlobal || { prototype: {} }
|
|
global.Howl = global.Howl || { prototype: {} }
|
|
global.Sound = global.Sound || { prototype: {} }
|