Skip to content

Commit

Permalink
test: ensure exposed to end user
Browse files Browse the repository at this point in the history
  • Loading branch information
russellwheatley committed Nov 6, 2024
1 parent 8db15d5 commit 5c38c5b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/firestore/__tests__/firestore.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import firestore, {
firebase,
Filter,
getFirestore,
getAggregateFromServer,
addDoc,
doc,
collection,
Expand Down Expand Up @@ -651,6 +652,10 @@ describe('Firestore', function () {
it('`enablePersistentCacheIndexAutoCreation` is properly exposed to end user', function () {
expect(enablePersistentCacheIndexAutoCreation).toBeDefined();
});

it('`getAggregateFromServer` is properly exposed to end user', function () {
expect(getAggregateFromServer).toBeDefined();
});
});

describe('FirestorePersistentCacheIndexManager', function () {
Expand Down

0 comments on commit 5c38c5b

Please sign in to comment.