From 7d7b49b91a02a0b1846e1b66650ab79f51f1eff9 Mon Sep 17 00:00:00 2001 From: NightKev <34855794+DayKev@users.noreply.github.com> Date: Sun, 22 Sep 2024 18:11:14 -0700 Subject: [PATCH] Don't need those comments --- src/test/abilities/synchronize.test.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/test/abilities/synchronize.test.ts b/src/test/abilities/synchronize.test.ts index 324570b2618..6e0aa46763f 100644 --- a/src/test/abilities/synchronize.test.ts +++ b/src/test/abilities/synchronize.test.ts @@ -79,7 +79,6 @@ describe("Abilities - Synchronize", () => { game.doSwitchPokemon(1); await game.phaseInterceptor.to("BerryPhase"); - // Assert expect(game.scene.getParty()[0].status?.effect).toBe(StatusEffect.POISON); expect(game.scene.getEnemyParty()[0].status?.effect).toBeUndefined(); expect(game.phaseInterceptor.log).not.toContain("ShowAbilityPhase"); @@ -91,7 +90,6 @@ describe("Abilities - Synchronize", () => { game.move.select(Moves.THUNDER_WAVE); await game.phaseInterceptor.to("BerryPhase"); - // Assert expect(game.scene.getParty()[0].status?.effect).toBeUndefined(); expect(game.scene.getEnemyParty()[0].status?.effect).toBe(StatusEffect.PARALYSIS); expect(game.phaseInterceptor.log).toContain("ShowAbilityPhase"); @@ -104,7 +102,6 @@ describe("Abilities - Synchronize", () => { game.move.select(Moves.PSYCHO_SHIFT); await game.phaseInterceptor.to("BerryPhase"); - // Assert expect(game.scene.getParty()[0].status?.effect).toBe(StatusEffect.PARALYSIS); // keeping old gen < V impl for now since it's buggy otherwise expect(game.scene.getEnemyParty()[0].status?.effect).toBe(StatusEffect.PARALYSIS); expect(game.phaseInterceptor.log).toContain("ShowAbilityPhase");