Increase wait time in test

Should hopefully make it work on Github actions
This commit is contained in:
Jonatan Heyman 2024-12-09 13:38:14 +01:00
parent 96ae76897f
commit 3a90d2d12f

View File

@ -42,7 +42,7 @@ test("create new buffer from block", async ({page}) => {
await page.waitForTimeout(50) await page.waitForTimeout(50)
await page.locator("body").pressSequentially("My New Buffer") await page.locator("body").pressSequentially("My New Buffer")
await page.locator("body").press("Enter") await page.locator("body").press("Enter")
await page.waitForTimeout(50) await page.waitForTimeout(150)
await page.locator("body").press("Enter") await page.locator("body").press("Enter")
await page.locator("body").pressSequentially("New buffer content") await page.locator("body").pressSequentially("New buffer content")
await page.waitForTimeout(AUTO_SAVE_INTERVAL + 50); await page.waitForTimeout(AUTO_SAVE_INTERVAL + 50);