Skip to content

Commit ff01e07

Browse files
committed
fix type of maxDocumentsToProcess from 2 to number
1 parent f424efc commit ff01e07

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/firestore/test/unit/local/local_store_indexeddb.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,9 @@ class AsyncLocalStoreTester {
214214
}
215215
}
216216

217-
async backfillIndexes(config?: { maxDocumentsToProcess?: 2 }): Promise<void> {
217+
async backfillIndexes(config?: {
218+
maxDocumentsToProcess?: number;
219+
}): Promise<void> {
218220
await this.indexBackfiller.backfill(config?.maxDocumentsToProcess);
219221
}
220222
}

0 commit comments

Comments
 (0)