fixup!: build(docs-infra): Ensures that only member docs are linked (#36316)
PR Close #36316
This commit is contained in:
parent
7842f73e8b
commit
46ff673192
|
@ -137,12 +137,20 @@ describe('autoLinkCode post-processor', () => {
|
||||||
|
|
||||||
it('should ignore documents when the `docType` is set to `member` and the keyword doesn\'t include `.`',
|
it('should ignore documents when the `docType` is set to `member` and the keyword doesn\'t include `.`',
|
||||||
() => {
|
() => {
|
||||||
aliasMap.addDoc({docType: 'class', id: 'MyClass', aliases: ['MyClass'], path: 'a/b/myclass'});
|
|
||||||
aliasMap.addDoc(
|
aliasMap.addDoc(
|
||||||
{docType: 'member', id: 'MyEnum', aliases: ['MyEnum'], path: 'a/b/c'});
|
{docType: 'member', id: 'MyEnum', aliases: ['MyEnum'], path: 'a/b/c'});
|
||||||
const doc = {docType: 'test-doc', renderedContent: '<code>MyClass</code>'};
|
const doc = {docType: 'test-doc', renderedContent: '<code>MyEnum</code>'};
|
||||||
processor.$process([doc]);
|
processor.$process([doc]);
|
||||||
expect(doc.renderedContent).toEqual('<code><a href="a/b/myclass" class="code-anchor">MyClass</a></code>');
|
expect(doc.renderedContent).toEqual('<code>MyEnum</code>');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should insert anchors when the `docType` is set to `member` and the keyword includes `.`',
|
||||||
|
() => {
|
||||||
|
aliasMap.addDoc(
|
||||||
|
{docType: 'member', id: 'MyEnum', aliases: ['MyEnum.Value'], path: 'a/b/c'});
|
||||||
|
const doc = {docType: 'test-doc', renderedContent: '<code>MyEnum.Value</code>'};
|
||||||
|
processor.$process([doc]);
|
||||||
|
expect(doc.renderedContent).toEqual('<code><a href="a/b/c" class="code-anchor">MyEnum.Value</a></code>');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should insert anchors for individual text nodes within a code block', () => {
|
it('should insert anchors for individual text nodes within a code block', () => {
|
||||||
|
|
Loading…
Reference in New Issue