Fix linting

This commit is contained in:
NightKev 2024-10-04 00:05:22 -07:00 committed by GitHub
parent ad8900398f
commit 3653e68ea3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,7 +36,7 @@ describe("Moves - Diamond Storm", () => {
const diamondStorm = allMoves[Moves.DIAMOND_STORM]; const diamondStorm = allMoves[Moves.DIAMOND_STORM];
vi.spyOn(diamondStorm, "chance", "get").mockReturnValue(100); vi.spyOn(diamondStorm, "chance", "get").mockReturnValue(100);
vi.spyOn(diamondStorm, "accuracy", "get").mockReturnValue(100); vi.spyOn(diamondStorm, "accuracy", "get").mockReturnValue(100);
await game.classicMode.startBattle([Species.FEEBAS]); await game.classicMode.startBattle([ Species.FEEBAS ]);
game.move.select(Moves.DIAMOND_STORM); game.move.select(Moves.DIAMOND_STORM);
await game.phaseInterceptor.to("BerryPhase"); await game.phaseInterceptor.to("BerryPhase");