diff --git a/app/components/standings/__tests__/TeamScoreBreakdown.test.tsx b/app/components/standings/__tests__/TeamScoreBreakdown.test.tsx index bf99205..55fde33 100644 --- a/app/components/standings/__tests__/TeamScoreBreakdown.test.tsx +++ b/app/components/standings/__tests__/TeamScoreBreakdown.test.tsx @@ -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, };