Fix thaw test

This commit is contained in:
innerthunder 2024-08-20 10:29:24 -07:00
parent f149e31ce5
commit 5967775b07
1 changed files with 4 additions and 2 deletions

View File

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