From 83406ae93e872dc76c74383788c9a3b82b150fcc Mon Sep 17 00:00:00 2001 From: Chakravarthi Medicharla Date: Wed, 27 Sep 2023 18:30:47 +0530 Subject: [PATCH] fix: failing test --- test/unit/recipe/thirdparty/signInUp.test.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/recipe/thirdparty/signInUp.test.tsx b/test/unit/recipe/thirdparty/signInUp.test.tsx index 79b1afcf8..d3a492c74 100644 --- a/test/unit/recipe/thirdparty/signInUp.test.tsx +++ b/test/unit/recipe/thirdparty/signInUp.test.tsx @@ -58,7 +58,7 @@ describe("ThirdParty.SignInAndUp", () => { { id: "custom", name: "Custom", - logo: "LOGO" as any, + logo: LOGO, }, ], }, @@ -94,7 +94,7 @@ describe("ThirdParty.SignInAndUp", () => { }); test("check if the logo is rendered, when a logo is provided for custom providers", async () => { - const result = render(); + const result = render(); expect(await result.findByText("LOGO")).toBeInTheDocument(); });