From 4116553fc851abf7f4665d4c57b951e49c4803ba Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 14 Apr 2026 20:00:51 +0200 Subject: [PATCH] Add startDialogue method to runtime interaction system tests --- .../domain/runtime-interaction-system.test.ts | 24 ++++++++++++------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/tests/domain/runtime-interaction-system.test.ts b/tests/domain/runtime-interaction-system.test.ts index 0ec1f6f6..b5bf62b8 100644 --- a/tests/domain/runtime-interaction-system.test.ts +++ b/tests/domain/runtime-interaction-system.test.ts @@ -224,7 +224,8 @@ describe("RuntimeInteractionSystem", () => { playAnimation: () => {}, stopAnimation: () => {}, playSound: () => {}, - stopSound: () => {} + stopSound: () => {}, + startDialogue: () => {} } ); interactionSystem.updatePlayerPosition( @@ -245,7 +246,8 @@ describe("RuntimeInteractionSystem", () => { playAnimation: () => {}, stopAnimation: () => {}, playSound: () => {}, - stopSound: () => {} + stopSound: () => {}, + startDialogue: () => {} } ); @@ -296,7 +298,8 @@ describe("RuntimeInteractionSystem", () => { dispatches.push(`${link.id}:${instanceId}`); }, playSound: () => {}, - stopSound: () => {} + stopSound: () => {}, + startDialogue: () => {} } ); @@ -345,7 +348,8 @@ describe("RuntimeInteractionSystem", () => { playAnimation: () => {}, stopAnimation: () => {}, playSound: () => {}, - stopSound: () => {} + stopSound: () => {}, + startDialogue: () => {} } ); interactionSystem.updatePlayerPosition( @@ -371,7 +375,8 @@ describe("RuntimeInteractionSystem", () => { playAnimation: () => {}, stopAnimation: () => {}, playSound: () => {}, - stopSound: () => {} + stopSound: () => {}, + startDialogue: () => {} } ); @@ -518,7 +523,8 @@ describe("RuntimeInteractionSystem", () => { playAnimation: () => {}, stopAnimation: () => {}, playSound: () => {}, - stopSound: () => {} + stopSound: () => {}, + startDialogue: () => {} } ); @@ -569,7 +575,8 @@ describe("RuntimeInteractionSystem", () => { }, stopSound: (soundEmitterId, link) => { dispatches.push(`${link.id}:${soundEmitterId}`); - } + }, + startDialogue: () => {} } ); @@ -661,7 +668,8 @@ describe("RuntimeInteractionSystem", () => { playAnimation: () => {}, stopAnimation: () => {}, playSound: () => {}, - stopSound: () => {} + stopSound: () => {}, + startDialogue: () => {} } );