I used to run the following command to run some tests against a emulated firestore instance:
firebase emulators:exec --only firestore 'npm test'
Since my upgrade to "firebase-functions": "^3.18.0"
and `"firebase-functions-test": "^0.3.3"' this doesn't execute my tests anymore. And after a minute gives me:
Error: TIMEOUT: Port 8080 on localhost was not active within 60000ms
Running firebase emulators:start --only firestore
works fine. And if I change the command above to firebase emulators:exec --only auth 'npm test'
the execution works as expected, but obviously the tests fail.
Does anyone have an idea on how to solve this?