[Test] Fix final boss test (#3444)

Co-authored-by: ImperialSympathizer <imperialsympathizer@gmail.com>
This commit is contained in:
ImperialSympathizer 2024-08-08 17:06:57 -04:00 committed by GitHub
parent ba9378d1d8
commit b794662776
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -60,8 +60,8 @@ describe("Final Boss", () => {
await runToFinalBossEncounter(game, [Species.BIDOOF]);
const eternatus = game.scene.getEnemyPokemon();
expect(eternatus.species.speciesId).toBe(Species.ETERNATUS);
expect(eternatus.hasPassive()).toBe(false);
expect(eternatus?.species.speciesId).toBe(Species.ETERNATUS);
expect(eternatus?.hasPassive()).toBe(false);
});
it.todo("should change form on direct hit down to last boss fragment", () => {});