diff --git a/apps/api/src/combat/combat-equipment-integration.spec.ts b/apps/api/src/combat/combat-equipment-integration.spec.ts index e0fa3c4..874f7e4 100644 --- a/apps/api/src/combat/combat-equipment-integration.spec.ts +++ b/apps/api/src/combat/combat-equipment-integration.spec.ts @@ -190,8 +190,6 @@ function character(overrides: Partial = {}): Character { return { id: CHARACTER_ID, name: 'Aric Duskwalker', - level: 1, - experience: 0, silver: 0, baseHp: 100, baseAttack: 6, @@ -283,7 +281,7 @@ function fakeRewardService(): CombatRewardService { return { grantVictoryRewards: jest .fn() - .mockResolvedValue({ experience: 0, silver: 0, items: [] }), + .mockResolvedValue({ silver: 0, items: [] }), loadRewards: jest.fn().mockResolvedValue(null), } as unknown as CombatRewardService; } diff --git a/apps/web/src/app/features/world/current-location.fixture.ts b/apps/web/src/app/features/world/current-location.fixture.ts index 7f9a532..85db7ad 100644 --- a/apps/web/src/app/features/world/current-location.fixture.ts +++ b/apps/web/src/app/features/world/current-location.fixture.ts @@ -170,7 +170,6 @@ export function burnedRoadFixture( }, ], rewardPreview: [ - { key: 'silver', label: 'Silber', iconKey: 'silver' }, { key: 'equipment', label: 'Ausrüstung', iconKey: 'equipment' }, { key: 'material', label: 'Material', iconKey: 'material' }, ], diff --git a/apps/web/src/app/features/world/location-sidebar/location-sidebar.component.spec.ts b/apps/web/src/app/features/world/location-sidebar/location-sidebar.component.spec.ts index 433dc70..2448906 100644 --- a/apps/web/src/app/features/world/location-sidebar/location-sidebar.component.spec.ts +++ b/apps/web/src/app/features/world/location-sidebar/location-sidebar.component.spec.ts @@ -81,7 +81,6 @@ describe('LocationSidebarComponent', () => { const rewards = element.querySelectorAll('[data-sidebar="rewards"] li'); expect([...rewards].map((item) => item.textContent?.trim())).toEqual([ - 'Silber', 'Ausrüstung', 'Material', ]);