File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
packages-exp/auth-exp/src/core/strategies Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,9 @@ import { Endpoint } from '../../api';
30
30
import { ServerError } from '../../api/errors' ;
31
31
import { User } from '../../model/user' ;
32
32
import {
33
- fetchSignInMethodsForEmail , sendEmailVerification , verifyBeforeUpdateEmail
33
+ fetchSignInMethodsForEmail ,
34
+ sendEmailVerification ,
35
+ verifyBeforeUpdateEmail
34
36
} from './email' ;
35
37
36
38
use ( chaiAsPromised ) ;
@@ -73,7 +75,9 @@ describe('core/strategies/fetchSignInMethodsForEmail', () => {
73
75
const request = mock . calls [ 0 ] . request as Record < string , string > ;
74
76
expect ( request [ 'identifier' ] ) . to . eq ( email ) ;
75
77
// We can't rely on a fixed port number
76
- expect ( request [ 'continueUri' ] ) . to . match ( / h t t p : \/ \/ l o c a l h o s t : [ 0 - 9 ] + \/ c o n t e x t \. h t m l / ) ;
78
+ expect ( request [ 'continueUri' ] ) . to . match (
79
+ / h t t p : \/ \/ l o c a l h o s t : [ 0 - 9 ] + \/ c o n t e x t \. h t m l /
80
+ ) ;
77
81
} ) ;
78
82
}
79
83
You can’t perform that action at this time.
0 commit comments