| 2464 | it('should not fail on case insensitive matches', async () => { |
| 2465 | spyOn(cryptoUtils, 'randomString').and.returnValue('abcdefghijklmnop'); |
| 2466 | const logIn = id => Parse.User.logInWith('anonymous', { authData: { id } }); |
| 2467 | const user1 = await logIn('test1'); |
| 2468 | const username1 = user1.get('username'); |
| 2469 |
no outgoing calls
no test coverage detected