From 4e81d3d4dae5bbf6986a13d81fa88b20089775de Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 13 Sep 2026 05:13:36 +0000 Subject: [PATCH] chore: auto-fix lint & formatting [skip ci] --- tests/telegram.test.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/telegram.test.ts b/tests/telegram.test.ts index 24064f2..911da95 100644 --- a/tests/telegram.test.ts +++ b/tests/telegram.test.ts @@ -201,7 +201,8 @@ describe("TelegramDriver", () => { const driver = new TelegramDriver(); await driver.send( { - title: "OnionSchool/YangYiSongRequest: [CI — running](https://github.com/OnionSchool/YangYiSongRequest/actions)", + title: + "OnionSchool/YangYiSongRequest: [CI — running](https://github.com/OnionSchool/YangYiSongRequest/actions)", author: { name: "alice", iconUrl: "https://avatars.githubusercontent.com/u/1" }, }, { platform: "telegram", chatId: "-100123" }, @@ -214,7 +215,9 @@ describe("TelegramDriver", () => { }, ); - const body = JSON.parse(String(capturedInit!.body)) as { link_preview_options: { url: string } }; + const body = JSON.parse(String(capturedInit!.body)) as { + link_preview_options: { url: string }; + }; const previewUrl = new URL(body.link_preview_options.url); expect(previewUrl.searchParams.get("content")).toBe( "OnionSchool/YangYiSongRequest: CI — running",