From c8c06df5c93e1935098593963eb4a13d77a9ad11 Mon Sep 17 00:00:00 2001 From: Daniel Rivers Date: Fri, 17 Jan 2025 00:37:37 +0000 Subject: [PATCH] test: tsignore --- lib/utils/checkAuth.test.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/utils/checkAuth.test.ts b/lib/utils/checkAuth.test.ts index b925c05..25a5c27 100644 --- a/lib/utils/checkAuth.test.ts +++ b/lib/utils/checkAuth.test.ts @@ -62,6 +62,7 @@ describe("checkAuth", () => { }); it("error when domain supplied", async () => { + // @ts-expect-error Testing error case const result = await CheckAuth.checkAuth({ domain: null, clientId }); expect(result).toEqual({ success: false, @@ -70,6 +71,7 @@ describe("checkAuth", () => { }); it("error when clientId supplied", async () => { + // @ts-expect-error Testing error case const result = await CheckAuth.checkAuth({ domain, clientId: null }); expect(result).toEqual({ success: false,