(page: Page, displayName: string)
| 28 | } |
| 29 | |
| 30 | export function hookRow(page: Page, displayName: string): Locator { |
| 31 | return hookRows(page).filter({ hasText: displayName }).first() |
| 32 | } |
| 33 | |
| 34 | export async function selectHook(page: Page, displayName: string) { |
| 35 | const row = hookRow(page, displayName) |
no test coverage detected