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 e929e3f commit 1e24c19Copy full SHA for 1e24c19
packages/firestore/test/unit/util/bundle_data.ts
@@ -195,7 +195,12 @@ export const doc2: BundleElement = {
195
name: 'projects/test-project/databases/(default)/documents/collectionId/doc2',
196
createTime: { seconds: 1, nanos: 2000000 },
197
updateTime: { seconds: 3, nanos: 4000 },
198
- fields: { foo: { stringValue: 'value1' }, bar: { integerValue: 42 } }
+ fields: {
199
+ foo: { stringValue: 'value1' },
200
+ bar: { integerValue: 42 },
201
+ emptyArray: { arrayValue: {} },
202
+ emptyMap: { mapValue: {} }
203
+ }
204
}
205
};
206
export const doc2String = lengthPrefixedString(doc2);
0 commit comments