From 9bcf1fddcde1c61c3640acc70e4cebd64a66cce1 Mon Sep 17 00:00:00 2001 From: NightKev <34855794+DayKev@users.noreply.github.com> Date: Wed, 30 Jul 2025 21:30:19 -0700 Subject: [PATCH] Minor formatting change in `heal-block.test.ts` --- test/moves/heal-block.test.ts | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/test/moves/heal-block.test.ts b/test/moves/heal-block.test.ts index f9a55955bbd..fc814fda4bc 100644 --- a/test/moves/heal-block.test.ts +++ b/test/moves/heal-block.test.ts @@ -77,17 +77,15 @@ describe("Moves - Heal Block", () => { game.move.use(MoveId.WISH); await game.toNextTurn(); - expect(game.scene.arena.positionalTagManager.tags.filter(t => t.tagType === PositionalTagType.WISH)).toHaveLength( - 1, - ); + expect(game.scene.arena.positionalTagManager.tags.filter(t => t.tagType === PositionalTagType.WISH)) // + .toHaveLength(1); game.move.use(MoveId.SPLASH); await game.toNextTurn(); // wish triggered, but did NOT heal the player - expect(game.scene.arena.positionalTagManager.tags.filter(t => t.tagType === PositionalTagType.WISH)).toHaveLength( - 0, - ); + expect(game.scene.arena.positionalTagManager.tags.filter(t => t.tagType === PositionalTagType.WISH)) // + .toHaveLength(0); expect(player.hp).toBe(1); });