Skip to content

Commit ef892b9

Browse files
committed
Formatting
1 parent 8b28231 commit ef892b9

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

packages-exp/auth-exp/src/core/strategies/email.test.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ import { Endpoint } from '../../api';
3030
import { ServerError } from '../../api/errors';
3131
import { User } from '../../model/user';
3232
import {
33-
fetchSignInMethodsForEmail, sendEmailVerification, verifyBeforeUpdateEmail
33+
fetchSignInMethodsForEmail,
34+
sendEmailVerification,
35+
verifyBeforeUpdateEmail
3436
} from './email';
3537

3638
use(chaiAsPromised);
@@ -73,7 +75,9 @@ describe('core/strategies/fetchSignInMethodsForEmail', () => {
7375
const request = mock.calls[0].request as Record<string, string>;
7476
expect(request['identifier']).to.eq(email);
7577
// We can't rely on a fixed port number
76-
expect(request['continueUri']).to.match(/http:\/\/localhost:[0-9]+\/context\.html/);
78+
expect(request['continueUri']).to.match(
79+
/http:\/\/localhost:[0-9]+\/context\.html/
80+
);
7781
});
7882
}
7983

0 commit comments

Comments
 (0)