Function
startMenuSidebarEntryIsVisible
(
label: RegExp,
{ page }: TestProps
)
Source from the content-addressed store, hash-verified
| 722 | ): Promise<void> => entryHasIcon(START_MENU_SELECTOR, label, page); |
| 723 | |
| 724 | export const startMenuSidebarEntryIsVisible = async ( |
| 725 | label: RegExp, |
| 726 | { page }: TestProps |
| 727 | ): Promise<void> => |
| 728 | expect( |
| 729 | page.locator(START_MENU_SIDEBAR_SELECTOR).getByLabel(label) |
| 730 | ).toBeVisible(); |
| 731 | |
| 732 | export const startMenuContextIsOpen = async ( |
| 733 | entry: RegExp | string, |
Tested by
no test coverage detected