diff --git a/aio/tools/transforms/angular-base-package/post-processors/auto-link-code.spec.js b/aio/tools/transforms/angular-base-package/post-processors/auto-link-code.spec.js index b3ab3c4db4..5f18756f63 100644 --- a/aio/tools/transforms/angular-base-package/post-processors/auto-link-code.spec.js +++ b/aio/tools/transforms/angular-base-package/post-processors/auto-link-code.spec.js @@ -144,15 +144,6 @@ describe('autoLinkCode post-processor', () => { expect(doc.renderedContent).toEqual('MyEnum'); }); - 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: 'MyEnum.Value'}; - processor.$process([doc]); - expect(doc.renderedContent).toEqual('MyEnum.Value'); - }); - it('should insert anchors for individual text nodes within a code block', () => { aliasMap.addDoc({docType: 'class', id: 'MyClass', aliases: ['MyClass'], path: 'a/b/myclass'}); const doc = {