kitchensink
Version:
Dispatch's awesome components and style guide
8 lines (6 loc) • 312 B
JavaScript
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('<html><body></body></html>');
global.window = document.defaultView;
global.navigator = window.navigator;