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]);