-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot connect to Firestore emulator #6350
Comments
|
@jennifer-shehane Are you just making note of that? I have java installed and running fine on my end. As shown above - things render fine in the normal browser, just not the one spun up by Cypress. |
Since I am also having this issue I was wondering if it could be related to the Java version because I installed mine from brew. Have you done the same? |
@AugustinGrigorov I believe I installed just from a manual download, but not positive, it could have been brew. I am running Java 10.0.2 |
As noted in #2374 - passing That said, I don't think that is a good long term solution since it may be removed at some point (as noted in this issue on the Firebase JS SDK). It think it would be best to have full documentation around how this is handled in Cypress and ways to debug webchannel traffic in general (since Firestore is probably not the only setup like this) |
Thanks, this works for me. const db = firebase.firestore();
if (location.hostname === "localhost") {
db.settings({
experimentalForceLongPolling: true,
});
} |
How should I enable this in AgnularFire? |
I added it the same as above but in AngularFire instance. Thanks! |
If you are using emulators and include
In our case |
For anyone looking to do this with @angular/fire I managed it this way in the I think this would possibly be an issue if you are using Angular Universal for SSR, but I'm not on this project and am not sure how you can get an SSR friendly
|
Would it make sense to mention this somewhere in the official docs? I just wasted 2 days debugging this. Ran both into the @ANDREYDEN mentioned problem and the main, |
For Firebase SDK v9 people trying to use Here's what I used for Cypress import { connectFirestoreEmulator, getFirestore } from "firebase/firestore";
import "firebase/compat/firestore";
import firebase from "firebase/compat/app";
const app = firebase.initializeApp({ ... }); // 👈
export const db = getFirestore(app);
if (process.env.NODE_ENV === "development") {
connectFirestoreEmulator(db, "localhost", 8080);
// ...your other emulators
firebase.firestore().settings({
useFetchStreams: false,
experimentalForceLongPolling: true, // 👈
merge: true,
});
} There might be a better way for setting Firestore settings in v9 - the docs weren't so clear. |
@ingusjan I believe you can use the import { initializeApp } from "firebase/app"
import { initializeFirestorer } from "firebase/firestore";
const app = initializeApp()
const db = initializeFirestore(app, {
useFetchStreams: false,
host: 'localhost:8080',
experimentalForceLongPolling: true, // 👈
});
// The following can also be done instead of passing emulator config in settings
// connectFirestoreEmulator(db, 'localhost', 8080); Also, you can pass emulator config that way, or as shown in the emulator setup docs using import { initializeFirestore, enableIndexedDbPersistence } from 'firebase/firestore'
import { useInitFirestore } from 'reactfire'
export default function SetupFirestore() {
const { status, data: firestoreInstance } = useInitFirestore(async (firebaseApp) => {
const firestoreSettings = {
host: 'localhost:8080',
ssl: false,
};
if (window.Cypress) {
// Needed for Firestore support in Cypress (see https://github.com/cypress-io/cypress/issues/6350)
firestoreSettings.experimentalForceLongPolling = true;
}
const db = initializeFirestore(firebaseApp, firestoreSettings);
await enableIndexedDbPersistence(db);
return db;
});
return null
} Full example app of ^ available in generator-react-firebase react-firestore example with it's SetupFirestore component (disclaimer - I'm the author of generator-react-firebase which is a tool for starting/scaffolding react/firebase projects) |
Added this comment in ticket #2374 that I believe also applies here. I believe I've been able to get it to work without the experimentalForceLongPolling option turned on, which has greatly increased the performance of our tests. |
There is a good solution that worked for me (Angular 13, AngularFire 7, Firebase 9, Cypress 10) at https://stackoverflow.com/a/73854687/381124 |
Running into the same issue. |
@mjpoo were you able to get auth working in the same way. I cannot get cyprus e2e to login against the firebase auth emulators |
Current behavior:
Connecting to the Firestore emulator within Cypress does work the way it does in a default browser. When attempting to open the app in cypress it shows the "Could Not reach Firestore backend" error.
Here is a sample repo showing the issue - instructions to reproduce are in the README.
When connecting normally in the browser, data is loaded from both the Real Time Database and Firestore emulators.
This issue has also been mentioned by another user in this stackoverflow post.
Desired behavior:
Emulator should be able to connect the same way it does when being used in the browser.
Test code to reproduce
yarn install
yarn emulators
yarn seed
yarn start
localhost:3000
in your browser - notice that data loads from both emulated databasesyarn test
At this point the data does not load from the Firestore emulator within Cypress even though they will load in the browser (pictured below). This error appears in the console of the window opened by Cypress:
Versions
Happens with all cypress versions including:
The text was updated successfully, but these errors were encountered: