File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
packages-exp/auth-exp/test/integration/flows Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -136,10 +136,8 @@ describe('Integration test: oob codes', () => {
136
136
137
137
const reauthSession = await sendEmailLink ( ) ;
138
138
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 ) ;
143
141
144
142
expect ( newUser . uid ) . to . eq ( oldUser . uid ) ;
145
143
expect ( operationType ) . to . eq ( OperationType . REAUTHENTICATE ) ;
@@ -332,7 +330,9 @@ describe('Integration test: oob codes', () => {
332
330
const { user } = await signInWithEmailLink (
333
331
auth ,
334
332
email ,
335
- ( await code ( email ) ) . oobLink
333
+ (
334
+ await code ( email )
335
+ ) . oobLink
336
336
) ;
337
337
await verifyBeforeUpdateEmail ( user , updatedEmail , BASE_SETTINGS ) ;
338
338
expect ( user . email ) . to . eq ( email ) ;
You can’t perform that action at this time.
0 commit comments