From 9b66cf733657ec13b3f86fc95ca09125f2f52f99 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 14 Apr 2026 22:41:17 +0200 Subject: [PATCH] Add pauseTime to PlayerStartActionInputState in tests --- tests/unit/player-locomotion.test.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/unit/player-locomotion.test.ts b/tests/unit/player-locomotion.test.ts index 4f3e46ab..fa3a5a00 100644 --- a/tests/unit/player-locomotion.test.ts +++ b/tests/unit/player-locomotion.test.ts @@ -33,7 +33,8 @@ const FORWARD_INPUT: PlayerStartActionInputState = { moveRight: 0, jump: 0, sprint: 0, - crouch: 0 + crouch: 0, + pauseTime: 0 }; function createVolumeState(overrides: { @@ -801,4 +802,4 @@ describe("player-locomotion", () => { expect(step?.verticalVelocity).toBeCloseTo(-DEFAULT_MOVEMENT.moveSpeed); expect(step?.feetPosition.y).toBeCloseTo(0.05, 5); }); -}); \ No newline at end of file +});