From 72a92ed7981f02c97bdb0f8365682db4f378045a Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 25 Apr 2026 16:06:22 +0200 Subject: [PATCH] Update test input for handleRuntimeTargetLookInput to use -1 --- tests/unit/runtime-host.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/runtime-host.test.ts b/tests/unit/runtime-host.test.ts index e6730314..0d7cc14e 100644 --- a/tests/unit/runtime-host.test.ts +++ b/tests/unit/runtime-host.test.ts @@ -3270,13 +3270,13 @@ describe("RuntimeHost", () => { entityId: "npc-active" }; - expect(hostInternals.handleRuntimeTargetLookInput(1)).toBe(true); + expect(hostInternals.handleRuntimeTargetLookInput(-1)).toBe(true); expect(hostInternals.activeRuntimeTargetReference).toEqual({ kind: "npc", entityId: "npc-right" }); - expect(hostInternals.handleRuntimeTargetLookInput(1)).toBe(true); + expect(hostInternals.handleRuntimeTargetLookInput(-1)).toBe(true); expect(hostInternals.activeRuntimeTargetReference).toEqual({ kind: "npc", entityId: "npc-right"