We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 711e9ad commit 9eba9a0Copy full SHA for 9eba9a0
test/unit/recipe/thirdparty/signInUp.test.tsx
@@ -58,7 +58,7 @@ describe("ThirdParty.SignInAndUp", () => {
58
{
59
id: "custom",
60
name: "Custom",
61
- logo: "LOGO" as any,
+ logo: <span>LOGO</span>,
62
},
63
],
64
@@ -94,7 +94,7 @@ describe("ThirdParty.SignInAndUp", () => {
94
});
95
96
test("check if the logo is rendered, when a logo is provided for custom providers", async () => {
97
- const result = render(<SignInAndUp />);
+ const result = render(<SignInAndUp redirectOnSessionExists={false} />);
98
expect(await result.findByText("LOGO")).toBeInTheDocument();
99
100
0 commit comments