From caa0cef532548ff6d9448b7abc7e253daff866a0 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 1 Apr 2026 00:04:11 +0200 Subject: [PATCH] Update test cases for playAnimation and stopAnimation methods --- tests/domain/runtime-interaction-system.test.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/domain/runtime-interaction-system.test.ts b/tests/domain/runtime-interaction-system.test.ts index 55b49621..813887e7 100644 --- a/tests/domain/runtime-interaction-system.test.ts +++ b/tests/domain/runtime-interaction-system.test.ts @@ -186,7 +186,9 @@ describe("RuntimeInteractionSystem", () => { brushId, visible }); - } + }, + playAnimation: () => {}, + stopAnimation: () => {} } ); interactionSystem.updatePlayerPosition( @@ -205,7 +207,9 @@ describe("RuntimeInteractionSystem", () => { brushId, visible }); - } + }, + playAnimation: () => {}, + stopAnimation: () => {} } );