UNPKG

react-select-extended

Version:

A Select control built with and for ReactJS

14 lines (11 loc) 261 B
module.exports = function (html) { if (typeof document !== 'undefined') { return; } var jsdom = require('jsdom').jsdom; global.document = jsdom(html || ''); global.window = global.document.defaultView; global.navigator = { userAgent: 'JSDOM' }; };