From 2b08e4c497589fc127af48f57d1404f04d697ea1 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 22 Apr 2026 14:03:34 +0200 Subject: [PATCH] auto-git: [change] tests/domain/scene-document-validation.test.ts --- tests/domain/scene-document-validation.test.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/domain/scene-document-validation.test.ts b/tests/domain/scene-document-validation.test.ts index 7cf25be9..f4e41ef0 100644 --- a/tests/domain/scene-document-validation.test.ts +++ b/tests/domain/scene-document-validation.test.ts @@ -1117,6 +1117,7 @@ describe("validateSceneDocument", () => { topColorHex: "sky-blue", bottomColorHex: "#18212b" }; + document.world.showCelestialBodies = "yes" as unknown as boolean; document.world.ambientLight.intensity = -0.25; document.world.sunLight.direction = { x: 0, @@ -1132,6 +1133,10 @@ describe("validateSceneDocument", () => { code: "invalid-world-background-top-color", path: "world.background.topColorHex" }), + expect.objectContaining({ + code: "invalid-world-show-celestial-bodies", + path: "world.showCelestialBodies" + }), expect.objectContaining({ code: "invalid-world-ambient-intensity", path: "world.ambientLight.intensity"