Fix broken test

This commit is contained in:
Peter Stockings
2026-01-20 18:19:14 +11:00
parent 064952f254
commit 0d00e76d6b

View File

@@ -59,7 +59,7 @@ describe('CombatLogic', () => {
const result = traceProjectile(mockWorld, start, end, mockEntityManager);
expect(result.blockedPos).toEqual({ x: 3, y: 0 });
expect(result.blockedPos).toEqual({ x: 2, y: 0 });
expect(result.hitActorId).toBeUndefined();
});