File tree Expand file tree Collapse file tree
handwritten/firestore/dev/system-test Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -186,19 +186,19 @@ const timestampDeltaMS = 3000;
186186let beginDocCreation = 0 ;
187187let endDocCreation = 0 ;
188188
189- async function testCollectionWithDocs (
190- targetCol : CollectionReference ,
191- docs : {
192- [ id : string ] : DocumentData ;
189+ async function testCollectionWithDocs (
190+ targetCol : CollectionReference ,
191+ docs : {
192+ [ id : string ] : DocumentData ;
193193 } ,
194194) : Promise < CollectionReference < DocumentData > > {
195195 beginDocCreation = new Date ( ) . valueOf ( ) ;
196196 for ( const id in docs ) {
197- const ref = targetCol . doc ( id ) ;
197+ const ref = targetCol . doc ( id ) ;
198198 await ref . set ( docs [ id ] ) ;
199199 }
200200 endDocCreation = new Date ( ) . valueOf ( ) ;
201- return targetCol ;
201+ return targetCol ;
202202}
203203
204204function expectResults ( result : PipelineSnapshot , ...docs : string [ ] ) : void ;
@@ -226,7 +226,7 @@ describe.skipClassic('Pipeline class', () => {
226226 let randomCol : CollectionReference ;
227227
228228 async function setupBookDocs (
229- targetCol : CollectionReference ,
229+ targetCol : CollectionReference ,
230230 ) : Promise < CollectionReference < DocumentData > > {
231231 const bookDocs : { [ id : string ] : DocumentData } = {
232232 book1 : {
You can’t perform that action at this time.
0 commit comments