Fix test name injection for tera blast

This commit is contained in:
Sirz Benjie 2025-04-15 17:43:59 -05:00
parent 3cd11c6968
commit a649054bc6
No known key found for this signature in database
GPG Key ID: 4A524B4D196C759E
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ describe("Moves - Tera Blast", () => {
{ ab: "refrigerate", ty: "ice", ab_id: Abilities.REFRIGERATE, ty_id: PokemonType.ICE },
{ ab: "pixilate", ty: "fairy", ab_id: Abilities.PIXILATE, ty_id: PokemonType.FAIRY },
{ ab: "aerilate", ty: "flying", ab_id: Abilities.AERILATE, ty_id: PokemonType.FLYING },
])("should be $1 type if the user has $2", async ({ ab_id, ty_id }) => {
])("should be $ty type if the user has $ab", async ({ ab_id, ty_id }) => {
game.override.ability(ab_id).moveset([Moves.TERA_BLAST]).enemyAbility(Abilities.BALL_FETCH);
await game.classicMode.startBattle([Species.MAGIKARP]);
const playerPokemon = game.scene.getPlayerPokemon()!;