mirror of
https://github.com/zhigang1992/docsify.git
synced 2026-01-12 22:46:48 +08: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')
|