We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51b3a44 commit 3bccef6Copy full SHA for 3bccef6
packages/firestore/test/integration/util/helpers.ts
@@ -322,7 +322,7 @@ export function withTestCollectionSettings<T>(
322
let writeBatch_: WriteBatch | null = null;
323
let writeBatchSize = 0;
324
325
- for (const key in docs) {
+ for (const key of Object.keys(docs)) {
326
if (writeBatch_ === null) {
327
writeBatch_ = writeBatch(setupDb);
328
}
0 commit comments