fix: add missing projectedPoints and actualPoints to TeamScoreBreakdown test fixtures

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Chris Parsons 2026-02-14 23:08:06 -08:00
parent 7970cb6a9c
commit 24126fe389

View file

@ -33,6 +33,7 @@ describe("TeamScoreBreakdown", () => {
},
finalPosition: 1,
points: 100,
projectedPoints: null,
isComplete: true,
},
{
@ -46,6 +47,7 @@ describe("TeamScoreBreakdown", () => {
},
finalPosition: 3,
points: 50,
projectedPoints: null,
isComplete: true,
},
{
@ -59,6 +61,7 @@ describe("TeamScoreBreakdown", () => {
},
finalPosition: null,
points: 0,
projectedPoints: 25,
isComplete: false,
},
],
@ -77,6 +80,7 @@ describe("TeamScoreBreakdown", () => {
},
finalPosition: 1,
points: 100,
projectedPoints: null,
isComplete: true,
},
{
@ -90,6 +94,7 @@ describe("TeamScoreBreakdown", () => {
},
finalPosition: null,
points: 0,
projectedPoints: 25,
isComplete: false,
},
],
@ -108,12 +113,15 @@ describe("TeamScoreBreakdown", () => {
},
finalPosition: 3,
points: 50,
projectedPoints: null,
isComplete: true,
},
],
},
},
totalPoints: 150,
actualPoints: 150,
projectedPoints: 175,
completedCount: 2,
totalCount: 3,
};