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); });