(expectedSize: number)
| 50 | */ |
| 51 | export class UploadQueue { |
| 52 | private totalFileUploads = 0; |
| 53 | |
| 54 | private totalExpectedSize = 0; |
| 55 | |
| 56 | async waitForCapacity(expectedSize: number | null, signal?: AbortSignal) { |
| 57 | await waitForCondition( |
| 58 | () => |
no outgoing calls
no test coverage detected