Fixed 1 loc

This commit is contained in:
Bertie690 2025-05-19 14:17:45 -04:00
parent 67d209f6bc
commit 88742f45a7

View File

@ -78,7 +78,7 @@ describe("Moves - Chilly Reception", () => {
await game.phaseInterceptor.to("BerryPhase", false);
expect(game.scene.arena.weather?.weatherType).toBe(WeatherType.SNOW);
expect(game.phaseInterceptor.log).not.toContain("SwitchSummonPhase");
expect(game.phaseInterceptor.log).toContain("SwitchSummonPhase");
expect(game.scene.getPlayerPokemon()?.species.speciesId).toBe(Species.MEOWTH);
expect(game.scene.getPlayerPokemon()?.getLastXMoves()[0].result).toBe(MoveResult.SUCCESS);
});