From 985f83ea329e9df839f3c5ea45a7e0361a799b23 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 28 Apr 2026 14:28:29 +0200 Subject: [PATCH] Remove unnecessary test assertion for late dusk sun light intensity --- tests/domain/runtime-project-time.test.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/domain/runtime-project-time.test.ts b/tests/domain/runtime-project-time.test.ts index d45c0ed3..475ae9ae 100644 --- a/tests/domain/runtime-project-time.test.ts +++ b/tests/domain/runtime-project-time.test.ts @@ -230,7 +230,6 @@ describe("runtime project time", () => { expect(Math.abs(dawnEnd.sunLight.direction.y)).toBeLessThan(0.05); expect(Math.abs(duskEnd.sunLight.direction.y)).toBeLessThan(0.05); expect(lateDusk.sunLight.direction.y).toBeLessThan(-0.05); - expect(lateDusk.sunLight.intensity).toBeGreaterThan(0); expect(midDawn.moonLight?.direction.y ?? 0).toBeGreaterThan(0.05); expect(Math.abs(preDawnEnd.moonLight?.direction.y ?? 1)).toBeLessThan(0.05); expect(Math.abs(duskEnd.moonLight?.direction.y ?? 1)).toBeLessThan(0.05);