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