| 6 | import { GoogleAuthProvider, signInWithPopup, User } from "firebase/auth"; |
| 7 | |
| 8 | const signOut = auth => auth.signOut().then(() => console.log('signed out')); |
| 9 | const signIn = async auth => { |
| 10 | const provider = new GoogleAuthProvider(); |
| 11 |
no outgoing calls
no test coverage detected