File tree 2 files changed +6
-6
lines changed
packages/firestore/test/unit/local
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -48,8 +48,8 @@ export class CountingQueryEngine extends QueryEngine {
48
48
overlayTypes : { [ k : string ] : MutationType } = { } ;
49
49
50
50
/**
51
- * The number of documents returned by the RemoteDocumentCache's //
52
- * `getAll()` API (since the last call to `resetCounts()`) //
51
+ * The number of documents returned by the RemoteDocumentCache's
52
+ * `getAll()` API (since the last call to `resetCounts()`).
53
53
*/
54
54
documentsReadByCollection = 0 ;
55
55
@@ -185,9 +185,9 @@ export class CountingQueryEngine extends QueryEngine {
185
185
} ,
186
186
187
187
getOverlaysForCollectionGroup : (
188
- transaction ,
189
- collectionGroup ,
190
- sinceBatchId ,
188
+ transaction : PersistenceTransaction ,
189
+ collectionGroup : string ,
190
+ sinceBatchId : number ,
191
191
count : number
192
192
) => {
193
193
return subject
Original file line number Diff line number Diff line change @@ -2005,7 +2005,7 @@ function genericLocalStoreTests(
2005
2005
. finish ( ) ;
2006
2006
} ) ;
2007
2007
2008
- it ( 'can handle multiple field patches on local docs ' , ( ) => {
2008
+ it ( 'update on remote doc leads to update overlay ' , ( ) => {
2009
2009
expect ( new Map ( [ [ 'a' , 1 ] ] ) ) . to . deep . equal ( new Map ( [ [ 'a' , 0 ] ] ) ) ;
2010
2010
return expectLocalStore ( )
2011
2011
. afterAllocatingQuery ( query ( 'foo' ) )
You can’t perform that action at this time.
0 commit comments