Skip to content

Commit 7a2274a

Browse files
committed
Formatting
1 parent 9fd8b28 commit 7a2274a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

packages-exp/auth-exp/test/helpers/integration/emulator_rest_helpers.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,7 @@ export async function getPhoneVerificationCodes(
6767
}, {} as Record<string, VerificationSession>);
6868
}
6969

70-
export async function getOobCodes(
71-
auth: Auth
72-
): Promise<OobCodeSession[]> {
70+
export async function getOobCodes(auth: Auth): Promise<OobCodeSession[]> {
7371
assertEmulator(auth);
7472
const url = getEmulatorUrl(auth, 'oobCodes');
7573
const response: OobCodesResponse = await (

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ describe('Integration test: oob codes', () => {
7878

7979
async function code(toEmail: string): Promise<OobCodeSession> {
8080
const codes = await getOobCodes(auth);
81-
return codes.reverse().find(({email}) => email === toEmail)!;
81+
return codes.reverse().find(({ email }) => email === toEmail)!;
8282
}
8383

8484
context('flows beginning with sendSignInLinkToEmail', () => {

0 commit comments

Comments
 (0)