diff --git a/test/abilities/protean-libero.test.ts b/test/abilities/protean-libero.test.ts index 35c0f93816d..f1bbb077061 100644 --- a/test/abilities/protean-libero.test.ts +++ b/test/abilities/protean-libero.test.ts @@ -138,7 +138,9 @@ describe("Abilities - Protean/Libero", () => { game.move.use(move); await game.move.forceEnemyMove(enemyMove); await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); - await game.phaseInterceptor.to("BerryPhase"); // NB: berry phase = turn end tags stay = tests happy + // We stop before running `TurnEndPhase` so that the effects of `BattlerTag`s (such as from Electrify) + // are still active when checking the move's type + await game.phaseInterceptor.to("TurnEndPhase", false); expectTypeChange(linoone); },