From abba7cc721fa39f334045b630399c2a06dd08e28 Mon Sep 17 00:00:00 2001 From: Pankaj Sha Date: Sat, 28 Dec 2024 13:34:18 +0530 Subject: [PATCH] chore: fix lint issue --- tests/unit/utils/sendReplyInDiscordChannel.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/utils/sendReplyInDiscordChannel.test.ts b/tests/unit/utils/sendReplyInDiscordChannel.test.ts index a00b5b0..999229c 100644 --- a/tests/unit/utils/sendReplyInDiscordChannel.test.ts +++ b/tests/unit/utils/sendReplyInDiscordChannel.test.ts @@ -8,10 +8,10 @@ describe("sendReplyInDiscordChannel", () => { beforeEach(() => { jest.clearAllMocks(); }); - + afterEach(() => { jest.restoreAllMocks(); - }) + }); it("should call fetch", async () => { jest.spyOn(global, "fetch").mockResolvedValue(new Response(content));