(page: Page)
| 2 | import { SLASH_MENU_SELECTOR } from "./const.js"; |
| 3 | |
| 4 | export async function openSlashMenu(page: Page) { |
| 5 | await page.keyboard.press("/"); |
| 6 | await page.waitForSelector(SLASH_MENU_SELECTOR); |
| 7 | } |
| 8 | |
| 9 | export async function executeSlashCommand(page: Page, command: string) { |
| 10 | await openSlashMenu(page); |
no outgoing calls
no test coverage detected