From 2e3434910e57e80a187a2b31ff7b1a494a7bf217 Mon Sep 17 00:00:00 2001 From: Zach Day Date: Mon, 2 Sep 2024 18:08:45 -0400 Subject: [PATCH] Fix disable test not running --- src/test/moves/disable.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/test/moves/disable.test.ts b/src/test/moves/disable.test.ts index 583e2071f23..8abb4601844 100644 --- a/src/test/moves/disable.test.ts +++ b/src/test/moves/disable.test.ts @@ -3,13 +3,15 @@ import GameManager from "../utils/gameManager"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; -import { CommandPhase, EnemyCommandPhase, TurnInitPhase } from "#app/phases.js"; import { Mode } from "#app/ui/ui.js"; import { getMovePosition } from "../utils/gameManagerUtils"; import { Command } from "#app/ui/command-ui-handler"; import { MoveResult } from "#app/field/pokemon.js"; import { Stat } from "#app/data/pokemon-stat.js"; import { SPLASH_ONLY } from "../utils/testUtils"; +import { CommandPhase } from "#app/phases/command-phase.js"; +import { EnemyCommandPhase } from "#app/phases/enemy-command-phase.js"; +import { TurnInitPhase } from "#app/phases/turn-init-phase.js"; describe("Moves - Disable", () => { let phaserGame: Phaser.Game;