Skip to content

Commit b7737f2

Browse files
committed
fix(tests): Update import statement in useSignInWithGoogle test to match module structure
1 parent 55d9cba commit b7737f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/expo/src/hooks/__tests__/useSignInWithGoogle.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ vi.mock('@clerk/react', () => {
2121
});
2222

2323
vi.mock('../../google-one-tap', async importOriginal => {
24-
const actual = await importOriginal<typeof import('../../google-one-tap')>();
24+
const actual = await importOriginal();
2525
return {
2626
...actual,
2727
ClerkGoogleOneTapSignIn: mocks.ClerkGoogleOneTapSignIn,

0 commit comments

Comments
 (0)