Fix broken test
This commit is contained in:
parent
53f289576b
commit
cf96bea0ad
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue