Fix typecheck: cast DUMMY_EV_ROW to any in test fixture

ParticipantEV has additional required fields (id, participantId, etc.)
that aren't needed for the mock — cast to any to satisfy the type checker.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Chris Parsons 2026-03-17 13:56:51 -07:00
parent af790cca50
commit b2ef5e208e

View file

@ -84,7 +84,7 @@ const DUMMY_EV_ROW = {
probSixth: "0.1",
probSeventh: "0.2",
probEighth: "0.2",
};
} as any;
beforeEach(() => {
vi.clearAllMocks();