From fcdbf16bc3fdbf15bd5313a478ef005cbd0b1d27 Mon Sep 17 00:00:00 2001 From: NightKev <34855794+DayKev@users.noreply.github.com> Date: Tue, 15 Jul 2025 23:40:27 -0700 Subject: [PATCH] [Test] Fix `first-attack-double-power.test.ts` tests The trainer type overrides appear to be bugged currently --- test/moves/first-attack-double-power.test.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test/moves/first-attack-double-power.test.ts b/test/moves/first-attack-double-power.test.ts index f141294b308..7d1d9c4d762 100644 --- a/test/moves/first-attack-double-power.test.ts +++ b/test/moves/first-attack-double-power.test.ts @@ -1,11 +1,9 @@ import { allMoves } from "#data/data-lists"; import { AbilityId } from "#enums/ability-id"; -import { BattleType } from "#enums/battle-type"; import { BattlerIndex } from "#enums/battler-index"; import { MoveId } from "#enums/move-id"; import { MoveUseMode } from "#enums/move-use-mode"; import { SpeciesId } from "#enums/species-id"; -import { TrainerType } from "#enums/trainer-type"; import { GameManager } from "#test/testUtils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; @@ -29,8 +27,7 @@ describe("Moves - Fishious Rend & Bolt Beak", () => { game.override .ability(AbilityId.STURDY) .battleStyle("single") - .battleType(BattleType.TRAINER) - .randomTrainer({ trainerType: TrainerType.YOUNGSTER }) + .startingWave(5) .criticalHits(false) .enemyLevel(100) .enemySpecies(SpeciesId.DRACOVISH)