Skip to content

Commit abb48ce

Browse files
committed
test(core): Update integration test import
1 parent 17a8d74 commit abb48ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/core/tests/integration/auth.integration.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import {
2424
sendSignInLinkToEmail,
2525
signInAnonymously,
2626
sendPasswordResetEmail,
27-
signInWithOAuth,
27+
signInWithProvider,
2828
completeEmailLinkSignIn,
2929
confirmPhoneNumber as _confirmPhoneNumber,
3030
} from "../../src/auth";
@@ -141,7 +141,7 @@ describe("Firebase UI Auth Integration", () => {
141141
it("should handle enableAutoUpgradeAnonymous flag for OAuth", async () => {
142142
const provider = new GoogleAuthProvider();
143143
await signInAnonymously(ui.get());
144-
await expect(signInWithOAuth(ui.get(), provider)).rejects.toThrow();
144+
await expect(signInWithProvider(ui.get(), provider)).rejects.toThrow();
145145
});
146146
});
147147

0 commit comments

Comments
 (0)