signIn: async function()

in manual-emulator-testing/public/index.js [64:72]


    signIn: async function() {
      console.log("Attempting sign in as", this.emailInput);
      try {
        const user = await auth.signInWithEmailAndPassword(this.emailInput, this.passwordInput);
        this.setUser(user);
      } catch (e) {
        console.warn(e);
      }
    },