()
| 86 | //// Anonymous Auth //// |
| 87 | |
| 88 | anonymousLogin() { |
| 89 | return this.afAuth.auth.signInAnonymously() |
| 90 | .then((user) => { |
| 91 | this.authState = user |
| 92 | this.updateUserData() |
| 93 | }) |
| 94 | .catch(error => console.log(error)); |
| 95 | } |
| 96 | |
| 97 | //// Email/Password Auth //// |
| 98 |
no test coverage detected