()
| 126 | |
| 127 | // Start the Firebase signs-in flow via Google account. |
| 128 | async function signIn() { |
| 129 | console.log('Signing-in anonymously.'); |
| 130 | const provider = new GoogleAuthProvider(); |
| 131 | await signInWithPopup(auth, provider); |
| 132 | } |
| 133 | |
| 134 | // The user signs-out his Firebase account. |
| 135 | async function signUserOut() { |
nothing calls this directly
no outgoing calls
no test coverage detected