From 526aca5f7df6c014e70db1fe7be816f28c607d3a Mon Sep 17 00:00:00 2001 From: Wlowscha <54003515+Wlowscha@users.noreply.github.com> Date: Fri, 27 Dec 2024 11:36:00 +0100 Subject: [PATCH] Fixed parental bond test: requires correct number of hits from future sight when user switches out --- src/test/abilities/parental_bond.test.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/test/abilities/parental_bond.test.ts b/src/test/abilities/parental_bond.test.ts index c2f54fa4cfc..081402e8a5c 100644 --- a/src/test/abilities/parental_bond.test.ts +++ b/src/test/abilities/parental_bond.test.ts @@ -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); }); });