Fix linting

This commit is contained in:
NightKev 2024-10-03 23:15:13 -07:00 committed by GitHub
parent 502d486f3c
commit 5a2bce9baf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ describe("Abilities - Competitive", () => {
expect(playerPokemon.getStatStage(Stat.DEF)).toBe(-1); expect(playerPokemon.getStatStage(Stat.DEF)).toBe(-1);
expect(playerPokemon.getStatStage(Stat.SPATK)).toBe(0); expect(playerPokemon.getStatStage(Stat.SPATK)).toBe(0);
}); });
it("white herb should remove only the negative effects", async () => { it("white herb should remove only the negative effects", async () => {
game.override.startingHeldItems([{ name: "WHITE_HERB" }]); game.override.startingHeldItems([{ name: "WHITE_HERB" }]);
await game.classicMode.startBattle([ Species.FLYGON ]); await game.classicMode.startBattle([ Species.FLYGON ]);

View File

@ -55,7 +55,7 @@ describe("Abilities - Defiant", () => {
expect(playerPokemon.getStatStage(Stat.DEF)).toBe(-1); expect(playerPokemon.getStatStage(Stat.DEF)).toBe(-1);
expect(playerPokemon.getStatStage(Stat.ATK)).toBe(0); expect(playerPokemon.getStatStage(Stat.ATK)).toBe(0);
}); });
it("white herb should remove only the negative effects", async () => { it("white herb should remove only the negative effects", async () => {
game.override.startingHeldItems([{ name: "WHITE_HERB" }]); game.override.startingHeldItems([{ name: "WHITE_HERB" }]);
await game.classicMode.startBattle([ Species.FLYGON ]); await game.classicMode.startBattle([ Species.FLYGON ]);