Open rorybainfreetrade opened 3 years ago
With firestore, when you set the following for an object:
firestore.doc(`foo`).set({ 'bar.thing': 3 })
You expect to get a document in Firestore with the following shape:
{ bar: { thing: 3 } }
But currently the driver only stores the original dotted-string path to the original value. ('bar.thing': 3)
'bar.thing': 3
Nevermind, this has been implemented here: https://github.com/freetrade-io/ts-firebase-driver-testing/pull/80. We must be getting an out of date driver version somewhere!
With firestore, when you set the following for an object:
You expect to get a document in Firestore with the following shape:
But currently the driver only stores the original dotted-string path to the original value. (
'bar.thing': 3
)