feat(combat): add the Slice 0.6 action and event-type enum members

This commit is contained in:
Bastian Wagner
2026-08-20 21:12:46 +02:00
parent eed247d318
commit 6f1afaf5a3
3 changed files with 9 additions and 4 deletions

View File

@@ -80,7 +80,7 @@ describe('CombatController', () => {
it('rejects an unknown action value', async () => {
await request(app.getHttpServer())
.post('/api/combats/combat-1/actions')
.send({ action: 'HEAVY_STRIKE' })
.send({ action: 'FLEE' })
.expect(400);
expect(performAction).not.toHaveBeenCalled();