(
entry: RegExp | string,
{ page }: TestProps
)
| 730 | ).toBeVisible(); |
| 731 | |
| 732 | export const startMenuContextIsOpen = async ( |
| 733 | entry: RegExp | string, |
| 734 | { page }: TestProps |
| 735 | ): Promise<void> => |
| 736 | expect(async () => { |
| 737 | await clickStartMenuEntry(entry, { page }, true); |
| 738 | await contextMenuIsVisible({ page }); |
| 739 | }).toPass(); |
| 740 | |
| 741 | export const taskbarEntryHasTooltip = async ( |
| 742 | label: RegExp, |
no test coverage detected