From d8ebd27a9b6360dccf03cc1ef2438978c275280a Mon Sep 17 00:00:00 2001 From: thisPieonFire Date: Tue, 8 Jul 2025 14:41:40 +0200 Subject: [PATCH] Update test/moves/court-change.test.ts Co-authored-by: Bertie690 <136088738+Bertie690@users.noreply.github.com> --- test/moves/court-change.test.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/moves/court-change.test.ts b/test/moves/court-change.test.ts index e0644866d01..b1e3aea1482 100644 --- a/test/moves/court-change.test.ts +++ b/test/moves/court-change.test.ts @@ -50,6 +50,8 @@ describe("Move - Court Change", () => { game.move.use(MoveId.SPLASH, 1); await game.toEndOfTurn(); // own team should now be in the swamp and slowed + expect(game.scene.arena.getTagOnSide(ArenaTagType.GRASS_WATER_PLEDGE, ArenaTagSide.ENEMY)).toBeUndefined(); + expect(game.scene.arena.getTagOnSide(ArenaTagType.GRASS_WATER_PLEDGE, ArenaTagSide.PLAYER)).toBeDefined(); expect(regieleki.getEffectiveStat(Stat.SPD)).toBe(regieleki.getStat(Stat.SPD) / 4); });