mirror of
https://github.com/docsifyjs/docsify.git
synced 2025-12-08 19:55:52 +00:00
* chore: added new linter config * chore: linting fixes * chore: refactore in linting config and minor linting fixes
10 lines
233 B
JavaScript
10 lines
233 B
JavaScript
const { init } = require('../_helper');
|
|
|
|
describe('router', function() {
|
|
it('TODO: trigger to load another page', async function() {
|
|
await init();
|
|
window.location = '/?foo=bar';
|
|
// TODO: add some expectations
|
|
});
|
|
});
|