mirror of
https://github.com/docsifyjs/docsify.git
synced 2025-12-08 19:55:52 +00:00
* UPDATE .eslintrc * UPDATE lint task * FIX lint errors * CLEANUP * FIX no-eq-null warning * FIX many jsdoc warnings * FIX jsdoc issues * FIX jsdoc warnings * FIX jsdoc * FIX eqeq and no-eq-null * ADD lint to travis * UPDATE test env for eslint
10 lines
310 B
JavaScript
10 lines
310 B
JavaScript
const { init } = require('../_helper')
|
|
|
|
describe('full docsify initialization', function () {
|
|
it('TODO: check generated markup', async function () {
|
|
const { dom } = await init('simple', { loadSidebar: true })
|
|
console.log(dom.window.document.body.innerHTML)
|
|
// TODO: add some expectations
|
|
})
|
|
})
|