(page: Page, command: string)
| 7 | } |
| 8 | |
| 9 | export async function executeSlashCommand(page: Page, command: string) { |
| 10 | await openSlashMenu(page); |
| 11 | await page.waitForTimeout(100); |
| 12 | await page.keyboard.type(command); |
| 13 | await page.keyboard.press("Enter"); |
| 14 | await page.waitForTimeout(500); |
| 15 | } |
no test coverage detected