(auth: AuthDto, types: SyncRequestType[])
| 323 | } |
| 324 | |
| 325 | async assertSyncIsComplete(auth: AuthDto, types: SyncRequestType[]) { |
| 326 | await expect(this.syncStream(auth, types)).resolves.toEqual([ |
| 327 | expect.objectContaining({ type: SyncEntityType.SyncCompleteV1 }), |
| 328 | ]); |
| 329 | } |
| 330 | |
| 331 | async syncAckAll(auth: AuthDto, response: Array<{ type: string; ack: string }>) { |
| 332 | const acks: Record<string, string> = {}; |
no test coverage detected