import "reflect-metadata"; import { container } from "tsyringe"; import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"; import { InRaidHelper } from "@spt-aki/helpers/InRaidHelper"; import { IPmcData } from "@spt-aki/models/eft/common/IPmcData"; describe("InRaidHelper", () => { let inraidHelper: any; beforeEach(() => { inraidHelper = container.resolve("InRaidHelper"); }); afterEach(() => { vi.restoreAllMocks(); }); describe("resetSkillPointsEarnedDuringRaid", () => { it("should reset PointsEarnedDuringSession for each skill in profile", () => { const mockProfile = { Skills: { Common: [ { Id: "BotReload", Progress: 160.543, PointsEarnedDuringSession: 42, LastAccess: 1712633904 }, { Id: "BotSound", Progress: 145.6547, PointsEarnedDuringSession: 42, LastAccess: 1712633904 }, { Id: "Endurance", Progress: 223.951157, PointsEarnedDuringSession: 42, LastAccess: 1712633904, }, { Id: "Strength", Progress: 141.2618, PointsEarnedDuringSession: 42, LastAccess: 1712633904 }, ], }, }; (inraidHelper as any).resetSkillPointsEarnedDuringRaid(mockProfile); for (const skill of mockProfile.Skills.Common) { expect(skill.PointsEarnedDuringSession).toBe(0); } }); }); });