From 7ab87d234e893313f7dd00895e8e1eb30a7d48d4 Mon Sep 17 00:00:00 2001 From: NightKev <34855794+DayKev@users.noreply.github.com> Date: Thu, 14 Aug 2025 11:51:17 -0700 Subject: [PATCH] Fix Stealth Rocks test --- test/moves/entry-hazards.test.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/moves/entry-hazards.test.ts b/test/moves/entry-hazards.test.ts index cd432638e36..2431c9512d5 100644 --- a/test/moves/entry-hazards.test.ts +++ b/test/moves/entry-hazards.test.ts @@ -155,7 +155,6 @@ describe("Moves - Entry Hazards", () => { const enemy = game.field.getEnemyPokemon(); expect(enemy).toHaveStatusEffect(status); - // shoudl expect(game.textInterceptor.logs).not.toContain( i18next.t("arenaTag:toxicSpikesActivateTrapPoison", { pokemonNameWithAffix: getPokemonNameWithAffix(enemy), @@ -190,8 +189,7 @@ describe("Moves - Entry Hazards", () => { { multi: 0.5, species: SpeciesId.DURALUDON }, { multi: 1, species: SpeciesId.LICKILICKY }, { multi: 2, species: SpeciesId.DARMANITAN }, - // TODO: Figure out why quad weak pokemon are taking 33% damage from rocks instead of 50% - // { multi: 4, species: SpeciesId.ARTICUNO }, + { multi: 4, species: SpeciesId.DELIBIRD }, ])("should deal damage based on the target's weakness to Rock - $multi", async ({ multi, species }) => { game.override.enemySpecies(species); game.scene.arena.addTag(ArenaTagType.STEALTH_ROCK, 0, undefined, 0, ArenaTagSide.ENEMY);