({ page }: TestProps)
| 570 | expect(page.locator(START_BUTTON_SELECTOR)).toBeVisible(); |
| 571 | |
| 572 | export const startMenuIsHidden = async ({ page }: TestProps): Promise<void> => |
| 573 | expect(page.locator(START_MENU_SELECTOR)).toBeHidden(); |
| 574 | |
| 575 | export const startMenuIsVisible = async ({ page }: TestProps): Promise<void> => |
| 576 | expect(page.locator(START_MENU_SELECTOR)).toBeVisible(); |