test: audit and strengthen legacy test suite

This commit is contained in:
2026-07-25 06:54:18 +00:00
parent 46ae79dbe7
commit 7ed1b5df7f
27 changed files with 422 additions and 654 deletions
@@ -225,7 +225,7 @@ describe('Nation Actions', () => {
});
describe('che_필사즉생 (Last Stand)', () => {
it('increases experience and sets strategic limit', () => {
it('applies the legacy three-turn gains and global delay', () => {
const nation = buildNation(1);
const general = buildGeneral(1, 1, 1);
const definition = new LastStandAction([]);
@@ -240,8 +240,11 @@ describe('Nation Actions', () => {
definition.resolve(context as any, {});
expect(general.experience).toBeGreaterThan(100);
expect(nation.meta.strategic_cmd_limit).toBeGreaterThan(0);
expect(general.experience).toBe(115);
expect(general.dedication).toBe(115);
expect(general.train).toBe(100);
expect(general.atmos).toBe(100);
expect(nation.meta.strategic_cmd_limit).toBe(9);
});
});