From 3a90d2d12fcdaefc37c6d29316a8212bac67c893 Mon Sep 17 00:00:00 2001 From: Jonatan Heyman Date: Mon, 9 Dec 2024 13:38:14 +0100 Subject: [PATCH] Increase wait time in test Should hopefully make it work on Github actions --- tests/buffer-creation.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/buffer-creation.spec.js b/tests/buffer-creation.spec.js index 61b94b6e..708eb9e0 100644 --- a/tests/buffer-creation.spec.js +++ b/tests/buffer-creation.spec.js @@ -42,7 +42,7 @@ test("create new buffer from block", async ({page}) => { await page.waitForTimeout(50) await page.locator("body").pressSequentially("My New Buffer") await page.locator("body").press("Enter") - await page.waitForTimeout(50) + await page.waitForTimeout(150) await page.locator("body").press("Enter") await page.locator("body").pressSequentially("New buffer content") await page.waitForTimeout(AUTO_SAVE_INTERVAL + 50);