Skip to content

Commit 7afbf89

Browse files
committed
Formatting
1 parent e478c72 commit 7afbf89

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages-exp/auth-exp/test/integration/flows/oob.local.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,8 @@ describe('Integration test: oob codes', () => {
136136

137137
const reauthSession = await sendEmailLink();
138138
cred = EmailAuthProvider.credentialWithLink(email, reauthSession.oobLink);
139-
const {
140-
user: newUser,
141-
operationType
142-
} = await reauthenticateWithCredential(oldUser, cred);
139+
const { user: newUser, operationType } =
140+
await reauthenticateWithCredential(oldUser, cred);
143141

144142
expect(newUser.uid).to.eq(oldUser.uid);
145143
expect(operationType).to.eq(OperationType.REAUTHENTICATE);
@@ -332,7 +330,9 @@ describe('Integration test: oob codes', () => {
332330
const { user } = await signInWithEmailLink(
333331
auth,
334332
email,
335-
(await code(email)).oobLink
333+
(
334+
await code(email)
335+
).oobLink
336336
);
337337
await verifyBeforeUpdateEmail(user, updatedEmail, BASE_SETTINGS);
338338
expect(user.email).to.eq(email);

0 commit comments

Comments
 (0)