You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`The comment for {0} links to "{1}" which was resolved but is not included in the documentation. To fix this warning export it or add {2} to the externalSymbolLinkMappings option`,
94
96
failed_to_resolve_link_to_0_in_comment_for_1: `Failed to resolve link to "{0}" in comment for {1}`,
it("Handles links which do not resolve correctly",()=>{
891
+
constproject=convert("linkResolutionErrors");
892
+
app.options.setValue("validation",{
893
+
invalidLink: true,
894
+
notDocumented: false,
895
+
notExported: false,
896
+
});
897
+
898
+
app.validate(project);
899
+
logger.expectMessage(
900
+
'warn: The comment for abc links to "Map.size" which was resolved but is not included in the documentation. To fix this warning export it or add { "typescript": { "Map.size": "#" }} to the externalSymbolLinkMappings option',
901
+
);
902
+
logger.expectMessage(
903
+
'warn: Failed to resolve link to "DoesNotExist" in comment for abc',
904
+
);
905
+
logger.expectMessage(
906
+
'warn: Failed to resolve link to "@typedoc/foo.DoesNotExist" in comment for abc. You may have wanted "@typedoc/foo!DoesNotExist"',
0 commit comments