Update protean-libero.test.ts

Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
This commit is contained in:
Bertie690 2025-06-23 08:26:59 -04:00 committed by GitHub
parent a519995b47
commit b3664f86b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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);
},