(page: Page)
| 23 | }; |
| 24 | |
| 25 | const openModal = async (page: Page) => { |
| 26 | // The editor pane is focused by default, so we need to escape or it will |
| 27 | // capture the keyboard shortcuts |
| 28 | await getEditors(page).press('Escape'); |
| 29 | await expect(page.getByTestId('hotkeys')).toBeFocused(); |
| 30 | await page.keyboard.press('Shift+?'); |
| 31 | }; |
| 32 | |
| 33 | test.beforeEach(async ({ page, isMobile, request }) => { |
| 34 | test.skip( |
no test coverage detected