I use Firebase emulators with the auth emulator (very happy with this new feature!)
I signup a user using email and password -> I can see it created in the emulator UI.
I insert some data in Firestore -> it works equally well.
I export the data:
firebase emulators:export local_data
Later on, I restart the emulators with the exported data:
firebase emulators:start --import=local_data
The Firestore data is loaded correctly, but the user I created previously does not exist!
It seems that the auth emulator data is not exported or not imported.
Am I doing something wrong?
Edit: this feature has been implemented by Firebase!
With CLI version > 9.1.0 one can export and import auth data from the emulators, cool!
see this Github announcement