Fix broken test

This commit is contained in:
Sirz Benjie 2025-04-09 23:23:18 -05:00
parent 53f289576b
commit cf96bea0ad
No known key found for this signature in database
GPG Key ID: 4A524B4D196C759E
1 changed files with 3 additions and 0 deletions

View File

@ -71,6 +71,8 @@ describe("Abilities - Healer", () => {
expect(ally.trySetStatus(StatusEffect.BURN)).toBe(true);
game.move.select(Moves.SPLASH);
game.move.select(Moves.SPLASH, 1);
await game.phaseInterceptor.to("TurnEndPhase");
await game.toNextTurn();
expect(ally.status?.effect, "status effect was not healed").toBeFalsy();
@ -85,6 +87,7 @@ describe("Abilities - Healer", () => {
expect(ally.trySetStatus(StatusEffect.BURN)).toBe(true);
game.move.select(Moves.SPLASH);
game.move.select(Moves.SPLASH, 1);
await game.phaseInterceptor.to("TurnEndPhase");
await game.toNextTurn();
expect(ally.status?.effect, "status effect was not healed").toBeFalsy();