fix after_you.test.ts

This commit is contained in:
flx-sta 2024-09-09 14:08:51 -07:00
parent f022aa6ba4
commit ca0ca2b678

View File

@ -7,7 +7,6 @@ import { Species } from "#enums/species";
import GameManager from "#test/utils/gameManager"; import GameManager from "#test/utils/gameManager";
import Phaser from "phaser"; import Phaser from "phaser";
import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest";
import { SPLASH_ONLY } from "../utils/testUtils";
const TIMEOUT = 20 * 1000; const TIMEOUT = 20 * 1000;
@ -32,7 +31,7 @@ describe("Moves - After You", () => {
.enemyLevel(5) .enemyLevel(5)
.enemySpecies(Species.PIKACHU) .enemySpecies(Species.PIKACHU)
.enemyAbility(Abilities.BALL_FETCH) .enemyAbility(Abilities.BALL_FETCH)
.enemyMoveset(SPLASH_ONLY) .enemyMoveset(Moves.SPLASH)
.ability(Abilities.BALL_FETCH) .ability(Abilities.BALL_FETCH)
.moveset([Moves.AFTER_YOU, Moves.SPLASH]); .moveset([Moves.AFTER_YOU, Moves.SPLASH]);
}); });