We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
(Code was copied much straightup from firebase docs)
When running firestore.collection('x').onSnapshot (querySnapshot) => {querySnapshot.docChanges().forEach( ... which is present here https://googleapis.dev/nodejs/firestore/latest/QuerySnapshot.html#docChanges I encounter an error saying an error saying the method isn't present.
firestore.collection('x').onSnapshot (querySnapshot) => {querySnapshot.docChanges().forEach( ...
Was wondering if anyone has been able to mock the docChanges() method in QuerySnapshot? Or if there's a workaround for now
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Screenshot of issue
(Code was copied much straightup from firebase docs)
Description
When running
firestore.collection('x').onSnapshot (querySnapshot) => {querySnapshot.docChanges().forEach( ...
which is present here https://googleapis.dev/nodejs/firestore/latest/QuerySnapshot.html#docChanges
I encounter an error saying an error saying the method isn't present.
Was wondering if anyone has been able to mock the docChanges() method in QuerySnapshot? Or if there's a workaround for now
The text was updated successfully, but these errors were encountered: