(page: Page, name: string)
| 42 | } |
| 43 | |
| 44 | async function getRuntimeContextOutput(page: Page, name: string) { |
| 45 | const output = await getToolOutput(page, name) |
| 46 | return output === undefined ? null : RuntimeContextOutputSchema.parse(output) |
| 47 | } |
| 48 | |
| 49 | async function getEvents(page: Page) { |
| 50 | const text = await page.locator('#event-log-json').textContent() |
no test coverage detected