From a4f9ecb40d40378c968753ab748db9ffa6c59ad1 Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Thu, 19 Sep 2024 12:01:04 +0100 Subject: [PATCH] Update tests/main.test.ts Co-authored-by: Mentlegen <9807008+gentlementlegen@users.noreply.github.com> --- tests/main.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/main.test.ts b/tests/main.test.ts index 2a09d76a..f558bd59 100644 --- a/tests/main.test.ts +++ b/tests/main.test.ts @@ -93,7 +93,7 @@ describe("User start/stop", () => { }); test("Stopping an issue should close the author's linked PR", async () => { - const infoSpy = jest.spyOn(console, "info").mockImplementation(() => { }); + const infoSpy = jest.spyOn(console, "info").mockImplementation(() => {}); const issue = db.issue.findFirst({ where: { id: { equals: 2 } } }) as unknown as Issue; const sender = db.users.findFirst({ where: { id: { equals: 2 } } }) as unknown as PayloadSender; const context = createContext(issue, sender, "/stop") as Context<"issue_comment.created">;