All Questions
6 questions
0
votes
0
answers
22
views
Firebase storage unit tests: Timeout when trying to upload files using emulator
When running the below test via npm test, I get the following output:
Error: Timeout of 2000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure ...
-1
votes
1
answer
146
views
Firebase emulator storage - Can't connect to firebase storage emulator with getStorage
I wonder if somebody could me debugg why I cannot connect to the firebase emulator or share some knowledge on how to connect pls.
Goal: Connect to the Firebase storage emulator.
Context: I tryed ...
1
vote
0
answers
106
views
Cannot upload multiple files when using the firebase emulator
I have an angular web application that can upload multiple files to firebase storage. It works fine with the production server, but when I try to upload using the firebase emulator I get this error if ...
1
vote
2
answers
404
views
Firebase Storage in Web Application: storage.useEmulator is not a function
In my local web application development environment the web application is accessing the Firestore emulator correctly, but not the Storage emulator. Instead it accesses the production storage.
I load ...
1
vote
2
answers
1k
views
initialize firebase emulator storage
is there a way already how to use firebase storage emulator for local development?
I found out it should be possible these days using the firebase-tools I guess but I cant figure out how to include it ...
1
vote
1
answer
760
views
How to let firebase function emulator use production firebase storage bucket
so I've initialized a set of firebase functions with firebase init functions via firebase-tools. I then wrote a function as follows:
const functions = require('firebase-functions');
exports....