We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9865e72 commit 7c37f27Copy full SHA for 7c37f27
2 files changed
packages/clerk-js/src/core/__tests__/clerk.test.ts
@@ -2350,7 +2350,7 @@ describe('Clerk singleton', () => {
2350
reload: jest.fn(() => Promise.resolve(mockSession)),
2351
};
2352
2353
- beforeAll(() => {
+ beforeEach(() => {
2354
mockResource.touch.mockReturnValueOnce(Promise.resolve());
2355
mockClientFetch.mockReturnValue(Promise.resolve({ signedInSessions: [mockResource] }));
2356
});
packages/clerk-js/src/core/clerk.ts
@@ -30,9 +30,9 @@ import type {
30
AuthenticateWithGoogleOneTapParams,
31
AuthenticateWithMetamaskParams,
32
AuthenticateWithOKXWalletParams,
33
+ Clerk as ClerkInterface,
34
ClerkAPIError,
35
ClerkAuthenticateWithWeb3Params,
- Clerk as ClerkInterface,
36
ClerkOptions,
37
ClientJSONSnapshot,
38
ClientResource,
0 commit comments