From acbcd3e308b9828f7cceaa73af572fdb33f63069 Mon Sep 17 00:00:00 2001 From: Dean Date: Sun, 15 Jun 2025 20:10:26 -0700 Subject: [PATCH] Fix tests --- test/abilities/neutralizing_gas.test.ts | 2 +- test/moves/rage_fist.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/abilities/neutralizing_gas.test.ts b/test/abilities/neutralizing_gas.test.ts index 51d2bed3ff0..764c96a461d 100644 --- a/test/abilities/neutralizing_gas.test.ts +++ b/test/abilities/neutralizing_gas.test.ts @@ -58,7 +58,7 @@ describe("Abilities - Neutralizing Gas", () => { expect(game.scene.getPlayerPokemon()?.getStatStage(Stat.ATK)).toBe(1); }); - it.todo("should activate before other abilities", async () => { + it("should activate before other abilities", async () => { game.override.enemySpecies(SpeciesId.ACCELGOR).enemyLevel(100).enemyAbility(AbilityId.INTIMIDATE); await game.classicMode.startBattle([SpeciesId.FEEBAS]); diff --git a/test/moves/rage_fist.test.ts b/test/moves/rage_fist.test.ts index 31dd987cb87..a5994457e3d 100644 --- a/test/moves/rage_fist.test.ts +++ b/test/moves/rage_fist.test.ts @@ -166,7 +166,7 @@ describe("Moves - Rage Fist", () => { // Charizard hit game.move.select(MoveId.SPLASH); - await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); await game.toNextTurn(); expect(getPartyHitCount()).toEqual([1, 0]);