From 5967775b076cfa5b8abe2a6b251b6235fe9c5a27 Mon Sep 17 00:00:00 2001 From: innerthunder Date: Tue, 20 Aug 2024 10:29:24 -0700 Subject: [PATCH] Fix thaw test --- src/test/moves/powder.test.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/test/moves/powder.test.ts b/src/test/moves/powder.test.ts index f2c245cd141..99cf9d6cc7d 100644 --- a/src/test/moves/powder.test.ts +++ b/src/test/moves/powder.test.ts @@ -79,9 +79,11 @@ describe("Moves - Powder", () => { ); it( - "should not prevent the target from thawing out with its Fire-type move", + "should not prevent the target from thawing out with Flame Wheel", async () => { - game.override.enemyStatusEffect(StatusEffect.FREEZE); + game.override + .enemyMoveset(Array(4).fill(Moves.FLAME_WHEEL)) + .enemyStatusEffect(StatusEffect.FREEZE); await game.startBattle([Species.CHARIZARD]);