()
| 18 | } |
| 19 | |
| 20 | function createTempDir(): string { |
| 21 | return mkdtempSync(path.join(tmpdir(), 'chatlab-chart-runtime-')) |
| 22 | } |
| 23 | |
| 24 | function getChart(result: Awaited<ReturnType<typeof renderChartTool.handler>>): ChartPayload { |
| 25 | assert.ok(result.chart, 'expected render_chart to return a chart payload') |
no outgoing calls
no test coverage detected