Update src/test/moves/retaliate.test.ts

Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
This commit is contained in:
Lylian BALL 2024-09-02 16:25:42 +02:00 committed by GitHub
parent 2ed76e92cf
commit fc8ecf9662
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,7 +43,8 @@ describe("Moves - Retaliate", () => {
await game.toNextTurn();
game.move.select(Moves.RETALIATE);
await game.phaseInterceptor.to(MoveEffectPhase);
await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]);
await game.phaseInterceptor.to("MoveEffectPhase");
expect(retaliate.calculateBattlePower).toHaveReturnedWith(140);
});
});