|
1 | 1 | const docsifyInit = require('../helpers/docsify-init');
|
2 | 2 |
|
3 |
| -// Suite |
4 |
| -// ----------------------------------------------------------------------------- |
5 | 3 | describe('Docsify', function() {
|
6 |
| - // Tests |
7 |
| - // --------------------------------------------------------------------------- |
8 |
| - test('allows $docsify configuration to be a function', async () => { |
9 |
| - const testConfig = jest.fn(vm => { |
10 |
| - expect(vm).toBeInstanceOf(Object); |
11 |
| - expect(vm.constructor.name).toEqual('Docsify'); |
12 |
| - expect(vm.$fetch).toBeInstanceOf(Function); |
13 |
| - expect(vm.$resetEvents).toBeInstanceOf(Function); |
14 |
| - expect(vm.route).toBeInstanceOf(Object); |
15 |
| - }); |
| 4 | + describe('config options', () => { |
| 5 | + test('allows $docsify configuration to be a function', async () => { |
| 6 | + const testConfig = jest.fn(vm => { |
| 7 | + expect(vm).toBeInstanceOf(Object); |
| 8 | + expect(vm.constructor.name).toEqual('Docsify'); |
| 9 | + expect(vm.$fetch).toBeInstanceOf(Function); |
| 10 | + expect(vm.$resetEvents).toBeInstanceOf(Function); |
| 11 | + expect(vm.route).toBeInstanceOf(Object); |
| 12 | + }); |
16 | 13 |
|
17 |
| - await docsifyInit({ |
18 |
| - config: testConfig, |
| 14 | + await docsifyInit({ |
| 15 | + config: testConfig, |
| 16 | + }); |
| 17 | + |
| 18 | + expect(typeof Docsify).toEqual('object'); |
| 19 | + expect(testConfig).toHaveBeenCalled(); |
19 | 20 | });
|
20 | 21 |
|
21 |
| - expect(typeof Docsify).toEqual('object'); |
22 |
| - expect(testConfig).toHaveBeenCalled(); |
| 22 | + describe('config.el', () => { |
| 23 | + it('accepts an element instance', async () => { |
| 24 | + const config = jest.fn(() => { |
| 25 | + const app = document.querySelector('#app'); |
| 26 | + expect(app).toBeInstanceOf(HTMLElement); |
| 27 | + |
| 28 | + return { |
| 29 | + basePath: `${TEST_HOST}/docs/index.html#/`, |
| 30 | + el: app, |
| 31 | + }; |
| 32 | + }); |
| 33 | + |
| 34 | + await docsifyInit({ |
| 35 | + config, |
| 36 | + testURL: `${TEST_HOST}/docs/index.html#/`, |
| 37 | + }); |
| 38 | + |
| 39 | + expect(config).toHaveBeenCalled(); |
| 40 | + |
| 41 | + expect(document.querySelector('#main').textContent).toContain( |
| 42 | + 'A magical documentation site generator.' |
| 43 | + ); |
| 44 | + }); |
| 45 | + }); |
23 | 46 | });
|
24 | 47 |
|
25 | 48 | test('provides the hooks and vm API to plugins', async () => {
|
|
0 commit comments