style: format test file

This commit is contained in:
ThanhNguyxn 2026-01-30 17:36:16 +07:00 committed by Ayaan Zaidi
parent b05d57964b
commit 8e5a684445

View File

@ -50,7 +50,9 @@ describe("markdownToTelegramHtml", () => {
it("properly nests overlapping bold and autolink (#4071)", () => { it("properly nests overlapping bold and autolink (#4071)", () => {
const res = markdownToTelegramHtml("**start https://example.com** end"); const res = markdownToTelegramHtml("**start https://example.com** end");
expect(res).toMatch(/<b>start <a href="https:\/\/example\.com">https:\/\/example\.com<\/a><\/b> end/); expect(res).toMatch(
/<b>start <a href="https:\/\/example\.com">https:\/\/example\.com<\/a><\/b> end/,
);
}); });
it("properly nests link inside bold", () => { it("properly nests link inside bold", () => {