({
page,
}: TestProps)
| 548 | expect(page.locator(CONTEXT_MENU_SELECTOR)).toBeHidden(); |
| 549 | |
| 550 | export const contextMenuIsVisible = async ({ |
| 551 | page, |
| 552 | }: TestProps): Promise<void> => |
| 553 | expect(page.locator(CONTEXT_MENU_SELECTOR)).toBeVisible(); |
| 554 | |
| 555 | export const desktopIsVisible = async ({ page }: TestProps): Promise<void> => |
| 556 | expect(page.locator(DESKTOP_SELECTOR)).toBeVisible(); |
no outgoing calls
no test coverage detected