()
| 1385 | } |
| 1386 | |
| 1387 | private async getCacheNames(): Promise<string[]> { |
| 1388 | const controlTable = (await this.controlTable) as CacheTable; |
| 1389 | const appVersions = Array.from(this.versions.values()); |
| 1390 | const appVersionCacheNames = await Promise.all( |
| 1391 | appVersions.map((version) => version.getCacheNames()), |
| 1392 | ); |
| 1393 | return [controlTable.cacheName].concat(...appVersionCacheNames); |
| 1394 | } |
| 1395 | } |
no test coverage detected