( jsonPath: string, )
| 157 | * @returns parsed container reflection |
| 158 | */ |
| 159 | export async function readDocsJSON( |
| 160 | jsonPath: string, |
| 161 | ): Promise<ContainerReflection> { |
| 162 | const docsJSON = await readFile(jsonPath, "utf8"); |
| 163 | return JSON.parse(docsJSON) as ContainerReflection; |
| 164 | } |
no test coverage detected