UNPKG

kitchensink

Version:

Dispatch's awesome components and style guide

8 lines (6 loc) 312 B
const jsdom = require('jsdom'); // A super simple DOM ready for React to render into // Store this DOM and the window in global scope ready for React to access global.document = jsdom.jsdom('<!doctype html><html><body></body></html>'); global.window = document.defaultView; global.navigator = window.navigator;