From 650c36f9ef49c1f7d9aa4366075a78442717a800 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 22 Apr 2026 14:04:29 +0200 Subject: [PATCH] auto-git: [change] tests/e2e/world-environment.e2e.ts --- tests/e2e/world-environment.e2e.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/e2e/world-environment.e2e.ts b/tests/e2e/world-environment.e2e.ts index 9a3924e4..c0eceb4e 100644 --- a/tests/e2e/world-environment.e2e.ts +++ b/tests/e2e/world-environment.e2e.ts @@ -40,6 +40,7 @@ test("world environment settings persist and carry into the runner", async ({ pa await page.getByTestId("world-sun-intensity").press("Tab"); await page.getByTestId("world-sun-direction-x").fill("-1"); await page.getByTestId("world-sun-direction-x").press("Tab"); + await page.getByTestId("world-show-celestial-bodies").check(); await expect(page.getByTestId("world-background-mode-value")).toContainText("Vertical Gradient"); await expect(page.getByTestId("viewport-canvas-topLeft")).toHaveCSS("background-image", /linear-gradient/); @@ -49,6 +50,7 @@ test("world environment settings persist and carry into the runner", async ({ pa await expect(page.getByTestId("world-background-mode-value")).toContainText("Vertical Gradient"); await expect(page.getByTestId("world-ambient-intensity")).toHaveValue("0.45"); + await expect(page.getByTestId("world-show-celestial-bodies")).toBeChecked(); await expect(page.getByTestId("viewport-canvas-topLeft")).toHaveCSS("background-image", /linear-gradient/); await page.getByTestId("enter-run-mode").click();