mirror of
https://github.com/docsifyjs/docsify.git
synced 2025-12-08 19:55:52 +00:00
11 lines
301 B
JavaScript
11 lines
301 B
JavaScript
require = require('esm')(module/*, options*/)
|
|
const {JSDOM} = require('jsdom')
|
|
const dom = new JSDOM('<!DOCTYPE html><body></body>')
|
|
|
|
global.window = dom.window
|
|
global.document = dom.window.document
|
|
global.navigator = dom.window.navigator
|
|
global.location = dom.window.location
|
|
|
|
require('../src/core')
|