firestore-mock
Version:
Firestore intsance mock for the Firebase Admin SDK
22 lines (17 loc) • 484 B
JavaScript
function QuerySnapshotMock(docs, query) {
this.docs = docs;
this.query = query;
this.size = docs.length;
this.empty = !docs.length;
this.parent = query;
}
QuerySnapshotMock.prototype.forEach = function(callback) {
return this.docs.forEach(callback);
};
QuerySnapshotMock.prototype.docChanges = function() {
return "This is not supported";
};
QuerySnapshotMock.prototype.isEqual = function() {
return "This is not supported";
};
module.exports = QuerySnapshotMock;