[Test] Fix final boss test (#3444)
Co-authored-by: ImperialSympathizer <imperialsympathizer@gmail.com>
This commit is contained in:
parent
ba9378d1d8
commit
b794662776
|
@ -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", () => {});
|
||||
|
|
Loading…
Reference in New Issue