fix: seed character at resolved south gate

This commit is contained in:
Bastian Wagner
2026-08-18 19:45:05 +02:00
parent c35859a4de
commit 0615bb1841
2 changed files with 7 additions and 1 deletions

View File

@@ -169,5 +169,11 @@ describe('seedVisibleVerticalSlice', () => {
}), }),
]), ]),
); );
expect(characterRepository.rows).toEqual([
expect.objectContaining({
id: DEMO_CHARACTER_ID,
currentLocationId: persistedSouthGateId,
}),
]);
}); });
}); });

View File

@@ -98,7 +98,7 @@ export async function seedVisibleVerticalSlice(
baseHp: 100, baseHp: 100,
baseAttack: 6, baseAttack: 6,
currentHp: 100, currentHp: 100,
currentLocationId: SOUTH_GATE_ID, currentLocationId: southGateId,
}); });
} }
} }