From 24126fe389ade09320eed06483cdd0697a0a4118 Mon Sep 17 00:00:00 2001 From: Chris Parsons Date: Sat, 14 Feb 2026 23:08:06 -0800 Subject: [PATCH] fix: add missing projectedPoints and actualPoints to TeamScoreBreakdown test fixtures Co-Authored-By: Claude Opus 4.6 --- .../standings/__tests__/TeamScoreBreakdown.test.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) 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, };