(
label: RegExp | string,
{ page }: TestProps
)
| 602 | ).toBeHidden(); |
| 603 | |
| 604 | export const contextMenuEntryIsVisible = async ( |
| 605 | label: RegExp | string, |
| 606 | { page }: TestProps |
| 607 | ): Promise<void> => |
| 608 | expect( |
| 609 | page.locator(CONTEXT_MENU_ENTRIES_SELECTOR).getByLabel(label, EXACT) |
| 610 | ).toBeVisible(); |
| 611 | |
| 612 | export const desktopEntryIsHidden = async ( |
| 613 | label: RegExp, |
no outgoing calls
no test coverage detected