From a29161c2ed5f5dd7491a274f52856360998017ae Mon Sep 17 00:00:00 2001 From: Bertie690 Date: Tue, 5 Aug 2025 22:12:35 -0400 Subject: [PATCH] Removed bogus PB test --- test/abilities/parental-bond.test.ts | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/test/abilities/parental-bond.test.ts b/test/abilities/parental-bond.test.ts index a72fc82260f..3700fd7450c 100644 --- a/test/abilities/parental-bond.test.ts +++ b/test/abilities/parental-bond.test.ts @@ -278,27 +278,6 @@ describe("Abilities - Parental Bond", () => { expect(enemyPokemon.getTag(BattlerTagType.TRAPPED)).toBeDefined(); }); - it("Smack Down boosted by this ability should only ground the target after the second hit", async () => { - game.override.moveset([MoveId.SMACK_DOWN]); - - await game.classicMode.startBattle([SpeciesId.MAGIKARP]); - - const leadPokemon = game.field.getPlayerPokemon(); - const enemyPokemon = game.field.getEnemyPokemon(); - - game.move.select(MoveId.SMACK_DOWN); - await game.move.forceHit(); - - await game.phaseInterceptor.to("DamageAnimPhase"); - - expect(leadPokemon.turnData.hitCount).toBe(2); - expect(enemyPokemon.getTag(BattlerTagType.IGNORE_FLYING)).toBeUndefined(); - - await game.phaseInterceptor.to("TurnEndPhase"); - - expect(enemyPokemon.getTag(BattlerTagType.IGNORE_FLYING)).toBeDefined(); - }); - it("U-turn boosted by this ability should strike twice before forcing a switch", async () => { game.override.moveset([MoveId.U_TURN]);