docsify/test/integration/router.js
Anton Wilhelm 2039e0dd1c rework TODOs
2019-03-06 21:53:09 +01:00

14 lines
320 B
JavaScript

const path = require('path')
const {expect} = require('chai')
const {init, expectSameDom} = require('../_helper')
describe('router', function() {
it('TODO: trigger to load another page', async function() {
const {docsify} = await init()
window.location = '/?foo=bar'
// TODO: add some expectations
})
})