(page: Page)
| 376 | * Navigate to the chat page and wait for it to load |
| 377 | */ |
| 378 | export async function goToChatPage(page: Page): Promise<void> { |
| 379 | await page.goto('/') |
| 380 | // Wait for the model selector to be visible |
| 381 | await page.locator('select').first().waitFor({ state: 'visible' }) |
| 382 | // Wait a bit for hydration |
| 383 | await page.waitForTimeout(500) |
| 384 | } |
| 385 | |
| 386 | /** |
| 387 | * Navigate to the summarize page and wait for it to load |
no outgoing calls
no test coverage detected