Fixed parental bond test: requires correct number of hits from future sight when user switches out

This commit is contained in:
Wlowscha 2024-12-27 11:36:00 +01:00
parent 2f4183c57c
commit 526aca5f7d
No known key found for this signature in database
GPG Key ID: 3C8F1AD330565D04
1 changed files with 1 additions and 2 deletions

View File

@ -488,7 +488,6 @@ describe("Abilities - Parental Bond", () => {
game.doSwitchPokemon(2);
await game.toNextTurn();
// TODO: Update hit count to 1 once Future Sight is fixed to not activate abilities if user is off the field
expect(enemyPokemon.damageAndUpdate).toHaveBeenCalledTimes(2);
expect(enemyPokemon.damageAndUpdate).toHaveBeenCalledTimes(1);
});
});