mirror of
https://github.com/docsifyjs/docsify.git
synced 2025-12-08 19:55:52 +00:00
14 lines
352 B
JavaScript
14 lines
352 B
JavaScript
const path = require('path')
|
|
|
|
const {expect} = require('chai')
|
|
|
|
const {init, expectSameDom} = require('../_helper')
|
|
|
|
describe('full docsify initialization', function() {
|
|
it('TODO: check generated markup', async function() {
|
|
const {docsify, dom} = await init('simple', {loadSidebar: true})
|
|
console.log(dom.window.document.body.innerHTML)
|
|
})
|
|
|
|
})
|