()
| 91 | }); |
| 92 | |
| 93 | function teamStorageFiles(): TeamStorageFile[] { |
| 94 | return [ |
| 95 | { |
| 96 | etag: "root-v1", |
| 97 | path: "root.txt", |
| 98 | signedUrl: "https://storage.example.com/root", |
| 99 | size: 4, |
| 100 | updatedAt: "2026-01-01T00:00:00.000Z", |
| 101 | }, |
| 102 | { |
| 103 | etag: "nested-v1", |
| 104 | path: "nested/data.csv", |
| 105 | signedUrl: "https://storage.example.com/nested", |
| 106 | size: 6, |
| 107 | updatedAt: "2026-01-01T00:00:00.000Z", |
| 108 | }, |
| 109 | ]; |
| 110 | } |
| 111 | |
| 112 | function makeFetch( |
| 113 | files: TeamStorageFile[], |
no outgoing calls
no test coverage detected