From 6b74477ebc7371356252de0fbd88bf0947afaa63 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 15 Apr 2026 10:11:06 +0200 Subject: [PATCH] Remove unused 'speakerName' fields in tests --- tests/domain/runtime-interaction-system.test.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/domain/runtime-interaction-system.test.ts b/tests/domain/runtime-interaction-system.test.ts index 9d284d50..253cb4fa 100644 --- a/tests/domain/runtime-interaction-system.test.ts +++ b/tests/domain/runtime-interaction-system.test.ts @@ -182,7 +182,6 @@ function createRuntimeNpcFixture(options: { dialogueId: string; title: string; text: string; - speakerName?: string | null; position?: { x: number; y: number; z: number }; }): RuntimeSceneDefinition["entities"]["npcs"][number] { const position = options.position ?? { x: 0, y: 0, z: 0 }; @@ -202,7 +201,6 @@ function createRuntimeNpcFixture(options: { lines: [ { id: `${options.dialogueId}-line-1`, - speakerName: options.speakerName ?? null, text: options.text } ] @@ -633,7 +631,6 @@ describe("RuntimeInteractionSystem", () => { entityId: "entity-npc-console", dialogueId: "dialogue-console", title: "Console", - speakerName: "System", text: "Access granted.", position: { x: 10, y: 0, z: 0 } }) @@ -685,7 +682,6 @@ describe("RuntimeInteractionSystem", () => { entityId: "entity-npc-sequence", dialogueId: "dialogue-sequence", title: "Sequence Dialogue", - speakerName: "Console", text: "Sequence started.", position: { x: 10, y: 0, z: 0 } }) @@ -737,7 +733,6 @@ describe("RuntimeInteractionSystem", () => { entityId: "entity-npc-console", dialogueId: "dialogue-console", title: "Console", - speakerName: "System", text: "Console online.", position: { x: 10, y: 0, z: 0 } })