mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-06-10 18:04:18 -05:00
fix(58584): formatJSDocLink shouldn't introduce a trailing space when non link text. (#58585)
This commit is contained in:
@@ -560,4 +560,22 @@ class Foo {};
|
||||
assert.equal(ts.getTextOfJSDocComment(seeTag.comment), "{@link foo#bar label}");
|
||||
});
|
||||
});
|
||||
|
||||
describe("getTextOfJSDocComment", () => {
|
||||
it("should preserve link without introducing space", () => {
|
||||
const sourceText = `
|
||||
/**
|
||||
*
|
||||
* @see {@link foo}
|
||||
*/
|
||||
class Foo {};
|
||||
`;
|
||||
|
||||
const root = ts.createSourceFile("foo.ts", sourceText, ts.ScriptTarget.ES5, /*setParentNodes*/ true);
|
||||
const [classDecl] = root.statements;
|
||||
const [seeTag] = ts.getJSDocTags(classDecl);
|
||||
|
||||
assert.equal(ts.getTextOfJSDocComment(seeTag.comment), "{@link foo}");
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user