firebase email authentication use firebase.auth().createUserWithEmailAndPassword(email, password) and it needs email for authentication.
For development we need to execute this command again and again, but once the authentication succeed, next time with the same email address, createUserWithEmailAndPassword fail.
But for test I want to have account which wont become error even if t>>hat authentication is second time
Is there some way to create an account which succeed createUserWithEmailAndPassword many times?