claude/fix-lint-errors-n48594 #111

Merged
chrisp merged 3 commits from claude/fix-lint-errors-n48594 into main 2026-06-26 07:26:56 +00:00
Showing only changes of commit 8b480df98c - Show all commits

View file

@ -308,7 +308,7 @@ describe("resetCs2Event", () => {
const recalcCalls = vi.mocked(recalculateParticipantQP).mock.calls;
expect(recalcCalls).toHaveLength(2);
expect(recalcCalls.map((c) => c[0]).sort()).toEqual(["p1", "p2"]);
expect(recalcCalls.map((c) => c[0]).toSorted()).toEqual(["p1", "p2"]);
for (const call of recalcCalls) expect(call[1]).toBe("season-1");
});