(page: Page, tab: string)
| 52 | } |
| 53 | |
| 54 | export async function selectDevtoolsTab(page: Page, tab: string) { |
| 55 | await page |
| 56 | .getByTestId('ai-devtools-hook-tab') |
| 57 | .filter({ hasText: tab }) |
| 58 | .click() |
| 59 | } |
| 60 | |
| 61 | export function generationCard(page: Page, hookName: string): Locator { |
| 62 | return page.locator( |
no outgoing calls
no test coverage detected