Fix TS error: add resolvedElo to makeEntry in nhl-simulator.test.ts

TeamEntry requires resolvedElo after the simulator refactor.

https://claude.ai/code/session_01139GJVg2gqgDjcUzqhnBNn
This commit is contained in:
Claude 2026-04-30 06:11:09 +00:00
parent 2b57b1ef7a
commit e7a823fa84
No known key found for this signature in database

View file

@ -136,6 +136,7 @@ const makeEntry = (overrides: Partial<{
currentPoints: overrides.currentPoints ?? 80,
remainingGames: overrides.remainingGames ?? 10,
winProb: overrides.winProb ?? 0.55,
resolvedElo: 1500,
});
describe("simulateProjectedPoints", () => {