forked from swiftlang/swift-docc-render
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomComponents.spec.js
56 lines (47 loc) · 2.07 KB
/
CustomComponents.spec.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/**
* This source file is part of the Swift.org open source project
*
* Copyright (c) 2021 Apple Inc. and the Swift project authors
* Licensed under Apache License v2.0 with Runtime Library Exception
*
* See https://swift.org/LICENSE.txt for license information
* See https://swift.org/CONTRIBUTORS.txt for Swift project authors
*/
import CustomComponents from 'docc-render/plugins/CustomComponents';
import { createLocalVue } from '@vue/test-utils';
const defineSpy = jest.spyOn(window.customElements, 'define');
describe('CustomComponents', () => {
let localVue;
beforeEach(() => {
jest.clearAllMocks();
localVue = createLocalVue();
});
it('configures Vue to ignore elements that start with "custom-"', () => {
localVue.use(CustomComponents);
expect(localVue.config.ignoredElements.test('custom-header')).toBe(true);
expect(localVue.config.ignoredElements.test('custom-footer')).toBe(true);
expect(localVue.config.ignoredElements.test('custom-foo-bar')).toBe(true);
expect(localVue.config.ignoredElements.test('FakeComponent')).toBe(false);
});
it('does not utilize `customElements.define` when no templates exist', () => {
localVue.use(CustomComponents);
expect(defineSpy).not.toBeCalled();
});
it('utilizes `customElements.define` to register custom elements when templates exist', () => {
const customHeader = document.createElement('template');
customHeader.id = 'custom-header';
const customFooter = document.createElement('template');
customFooter.id = 'custom-footer';
document.body.appendChild(customHeader);
document.body.appendChild(customFooter);
localVue.use(CustomComponents);
expect(defineSpy).toHaveBeenCalledTimes(2);
const { mock: { calls } } = defineSpy;
expect(calls[0][0]).toBe(customHeader.id);
expect(calls[1][0]).toBe(customFooter.id);
// eslint-disable-next-line no-prototype-builtins
expect(HTMLElement.isPrototypeOf(calls[0][1])).toBe(true);
// eslint-disable-next-line no-prototype-builtins
expect(HTMLElement.isPrototypeOf(calls[1][1])).toBe(true);
});
});