signUp: async function()

in manual-emulator-testing/public/index.js [55:63]


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