Skip to content

Commit eaf69b8

Browse files
committed
fix test
1 parent f74c1bd commit eaf69b8

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

packages/thirdweb/src/react/web/ui/ConnectWallet/screens/LinkedProfilesScreen.test.tsx

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -99,17 +99,6 @@ describe("LinkedProfilesScreen", () => {
9999
expect(screen.getByText("[email protected]")).toBeInTheDocument();
100100
});
101101

102-
it("should display Custom Profile for custom_auth_endpoint", () => {
103-
vi.mocked(useProfiles).mockReturnValue({
104-
data: [{ type: "Custom_auth_endpoint", details: {} }],
105-
isLoading: false,
106-
// biome-ignore lint/suspicious/noExplicitAny: Mocking data
107-
} as any);
108-
109-
render(<LinkedProfilesScreen {...mockProps} />);
110-
expect(screen.getByText("Custom Profile")).toBeInTheDocument();
111-
});
112-
113102
it("should capitalize unknown profile types", () => {
114103
vi.mocked(useProfiles).mockReturnValue({
115104
data: [{ type: "unknown", details: {} }],

0 commit comments

Comments
 (0)