(page: Page)
| 47 | } |
| 48 | |
| 49 | async function getEvents(page: Page) { |
| 50 | const text = await page.locator('#event-log-json').textContent() |
| 51 | return z.array(ToolEventSchema).parse(JSON.parse(text || '[]')) |
| 52 | } |
| 53 | |
| 54 | test.describe('Runtime Context E2E Tests', () => { |
| 55 | test('server context is available to server tools', async ({ |
no test coverage detected