From b3664f86b335b8de0b7d3a53651730049ac297ba Mon Sep 17 00:00:00 2001 From: Bertie690 <136088738+Bertie690@users.noreply.github.com> Date: Mon, 23 Jun 2025 08:26:59 -0400 Subject: [PATCH] Update protean-libero.test.ts Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> --- test/abilities/protean-libero.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); },