(version: string, overrides: Partial<UpdateManifest> = {})
| 117 | } |
| 118 | |
| 119 | function manifestFor(version: string, overrides: Partial<UpdateManifest> = {}): UpdateManifest { |
| 120 | return { |
| 121 | version, |
| 122 | publishedAt: '2020-01-01T00:00:00.000Z', |
| 123 | rollout: [], |
| 124 | ...overrides, |
| 125 | }; |
| 126 | } |
| 127 | |
| 128 | function cacheWithManifest(manifest: UpdateManifest): UpdateCache { |
| 129 | return { |
no outgoing calls
no test coverage detected