b59ffd8ff2
- Removes tests for missing calculateFenceStandingChangeFromKills method - Adds a test for the resetSkillPointsEarnedDuringRaid method
52 lines
1.7 KiB
TypeScript
52 lines
1.7 KiB
TypeScript
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>("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(<IPmcData>mockProfile);
|
|
|
|
for (const skill of mockProfile.Skills.Common)
|
|
{
|
|
expect(skill.PointsEarnedDuringSession).toBe(0);
|
|
}
|
|
});
|
|
});
|
|
});
|