diff --git a/test/abilities/healer.test.ts b/test/abilities/healer.test.ts index 2f2e4dfa51b..efe4f651661 100644 --- a/test/abilities/healer.test.ts +++ b/test/abilities/healer.test.ts @@ -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();