mirror of
https://github.com/zhigang1992/docsify.git
synced 2026-06-14 01:22:32 +08:00
15 lines
320 B
JavaScript
15 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
|
|
})
|
|
|
|
})
|