(outputPath: string)
| 69 | } |
| 70 | |
| 71 | async function readYamlOutput(outputPath: string): Promise<NormalizedData> { |
| 72 | const content = await readFile(outputPath, "utf-8"); |
| 73 | return yaml.parse(content) as NormalizedData; |
| 74 | } |
| 75 | |
| 76 | test("does not write file when no chat completion exchanges", async () => { |
| 77 | const outputPath = path.join(tempDir, "output.yaml"); |
no test coverage detected
searching dependent graphs…