()
| 946 | } |
| 947 | |
| 948 | private async deleteAllCaches(): Promise<void> { |
| 949 | const cacheNames = await this.adapter.caches.keys(); |
| 950 | await Promise.all(cacheNames.map((name) => this.adapter.caches.delete(name))); |
| 951 | } |
| 952 | |
| 953 | /** |
| 954 | * Schedule the SW's attempt to reach a fully prefetched state for the given AppVersion |
no test coverage detected