From 501fb0b594064ee29c2d0cd5eed49bf7603a2018 Mon Sep 17 00:00:00 2001 From: Bertie690 Date: Sat, 14 Jun 2025 14:45:16 -0400 Subject: [PATCH] fixed tets a bit --- test/moves/swallow-spit-up.test.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/moves/swallow-spit-up.test.ts b/test/moves/swallow-spit-up.test.ts index 96fd4ebdb07..80b817723f5 100644 --- a/test/moves/swallow-spit-up.test.ts +++ b/test/moves/swallow-spit-up.test.ts @@ -84,7 +84,8 @@ describe("Swallow & Spit Up", () => { }); }); - it("should fail and display message at full HP without consuming stacks", async () => { + // TODO: Does this consume stacks or not? + it.todo("should fail and display message at full HP, consuming stacks", async () => { await game.classicMode.startBattle([SpeciesId.SWALOT]); const swalot = game.field.getPlayerPokemon(); @@ -234,7 +235,6 @@ describe("Swallow & Spit Up", () => { // should have fallen by 2 stages from Simple expect(player.getStatStage(Stat.DEF)).toBe(-1); expect(player.getStatStage(Stat.SPDEF)).toBe(-1); - expect(player.waveData.abilityRevealed).toBe(true); }); it("should invert stat drops when gaining Contrary", async () => { @@ -259,7 +259,6 @@ describe("Swallow & Spit Up", () => { // should have risen 1 stage from Contrary expect(player.getStatStage(Stat.DEF)).toBe(2); expect(player.getStatStage(Stat.SPDEF)).toBe(2); - expect(player.waveData.abilityRevealed).toBe(true); }); }); });