From 7c73831851d91a55232e092a0f5518f2e3d42110 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20He=C3=9F?= Date: Fri, 26 Jan 2024 17:29:09 +0100 Subject: [PATCH] fix early exit from heating test (#11876) --- tests/heating.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/heating.spec.js b/tests/heating.spec.js index fc6bed1cd2..e88b16b778 100644 --- a/tests/heating.spec.js +++ b/tests/heating.spec.js @@ -21,7 +21,7 @@ test.describe("loadpoint", async () => { test("change limit in 1° steps", async ({ page }) => { await page.getByTestId("limit-soc").getByRole("combobox").selectOption("69.0°C"); await expect(page.getByTestId("limit-soc")).toContainText("69.0°C"); - page.reload(); + await page.reload(); await expect(page.getByTestId("limit-soc")).toContainText("69.0°C"); }); });