mirror of
https://github.com/visgl/react-map-gl.git
synced 2025-12-08 20:16:02 +00:00
8 lines
168 B
JavaScript
8 lines
168 B
JavaScript
import {JSDOM} from 'jsdom';
|
|
|
|
const dom = new JSDOM(`<!DOCTYPE html><div id="map"></div>`);
|
|
/* global global */
|
|
global.document = dom.window.document;
|
|
|
|
import './src';
|