fix(e2e): wait for shell output before switching terminal tabs

This commit is contained in:
LukeParkerDev
2026-03-08 08:14:19 +10:00
parent 3e19a8dcba
commit fb7dd0661a

View File

@@ -27,6 +27,8 @@ async function run(page: Page, cmd: string) {
await terminal.click()
await page.keyboard.type(cmd)
await page.keyboard.press("Enter")
// powershell + windows just isnt that fast... we need to wait
await page.waitForTimeout(3_000)
}
async function store(page: Page, key: string) {